-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
117 lines (117 loc) · 3.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "generator-community",
"description": "Generate a README, CODE_OF_CONDUCT, CONTRIBUTING, and LICENSE file according to recommended community standards.",
"version": "0.0.0",
"author": {
"name": "Greg Swindle",
"email": "greg@swindle.net",
"url": "https://github.com/commonality"
},
"bugs": "https://github.com/commonality/generator-community/issues",
"commitplease": {
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"scope": "\\S+.*"
},
"dependencies": {
"generator-license": "5.1.0",
"generator-node": "2.2.0",
"git-remote-origin-url": "2.0.0",
"git-url-parse": "7.0.1",
"github-username": "4.1.0",
"inquirer-npm-name": "2.0.0",
"lodash": "^4.17.4",
"markdown-magic": "0.1.18",
"markdown-magic-install-command": "1.3.1",
"markdown-magic-package-scripts": "1.2.0",
"parse-author": "2.0.0",
"update-notifier": "2.2.0",
"yeoman-generator": "2.0.0"
},
"devDependencies": {
"babel-jest": "21.0.2",
"babel-preset-env": "1.6.0",
"babelify": "7.3.0",
"check-node-version": "2.1.0",
"commitplease": "2.7.10",
"coveralls": "^2.13.1",
"eslint": "4.7.2",
"eslint-config-xo-space": "0.16.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "21.1.0",
"eslint-plugin-jsdoc": "3.1.3",
"eslint-plugin-no-unsafe-innerhtml": "1.0.16",
"eslint-plugin-no-unsanitized": "2.0.1",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-scanjs-rules": "0.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "3.0.1",
"eslint-plugin-xss": "0.1.8",
"fixpack": "2.3.1",
"jest": "21.1.0",
"jest-cli": "21.1.0",
"markdown-toc": "1.2.0",
"nsp": "2.8.0",
"standard-version": "4.2.0",
"yeoman-assert": "3.1.0",
"yeoman-test": "1.7.0"
},
"engines": {
"node": ">=4.1.1"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"files": [
"index.js",
"generators"
],
"homepage": "https://github.com/commonality/generator-community",
"jest": {
"testEnvironment": "node"
},
"keywords": [
"code of conduct",
"community",
"contributing",
"license",
"readme",
"repository",
"yeoman-generator"
],
"license": "MIT",
"main": "index.js",
"repository": "commonality/generator-community",
"scripts": {
"docs": "md-magic --ignore 'node_modules' --ignore 'node_modules' --config ./markdown.config.js",
"docs:toc": "md-magic --ignore 'node_modules'",
"lint": "npm run lint:node-version && npm run lint:js && npm run lint:manifest",
"lint:js": "eslint ./generators/**/*.js ./__tests__/**/*.js --fix",
"lint:manifest": "fixpack",
"lint:node-version": "check-node-version --package",
"posttest": "npm run security",
"prepublish": "npm run security",
"pretest": "npm prune && npm run lint",
"release": "standard-version",
"security": "npm run security:nsp:scan",
"security:nsp:scan": "nsp check",
"test": "jest --forceExit --config=jest.config.json"
}
}