-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
201 lines (201 loc) · 6.13 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
{
"name": "readme-inspector",
"description":
"Inspect GitHub (and GitHub Enterprise) repositories for the presence and quality of READMEs.",
"version": "2.0.7",
"author": {
"name": "commonality",
"email": "[email protected]",
"url": "https://github.com/commonality"
},
"analytics": {
"ga": {
"trackingCode": "UA-117338111-1"
}
},
"bugs": "https://github.com/commonality/readme-inspector/issues",
"commitplease": {
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"scope": "\\S+.*"
},
"contributors": [],
"dependencies": {
"@octokit/rest": "15.4.0",
"bunyan": "1.8.12",
"bunyan-format": "0.2.1",
"dotenv": "5.0.1",
"dotenv-extended": "2.0.2",
"got": "8.3.1",
"insight": "0.10.1",
"lodash.camelcase": "4.3.0",
"lodash.mapkeys": "4.6.0",
"lodash.noop": "3.0.1",
"meow": "5.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "2.0.2",
"@semantic-release/git": "4.0.2",
"@semantic-release/npm": "3.2.4",
"ajv": "6.5.0",
"ajv-keywords": "3.2.0",
"codacy-coverage": "3.0.0",
"commitplease": "3.2.0",
"coveralls": "3.0.1",
"eslint": "4.19.1",
"eslint-config-prettier": "^2.4.0",
"eslint-config-scanjs": "1.0.0-beta4",
"eslint-config-standard": "11.0.0",
"eslint-config-xo": "0.20.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsdoc": "3.6.3",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-no-unsafe-innerhtml": "1.0.16",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "3.1.0",
"eslint-plugin-unicorn": "4.0.3",
"eslint-plugin-xss": "0.1.9",
"fixpack": "2.3.1",
"husky": "^0.14.3",
"jest": "22.4.3",
"jsdoc": "3.5.5",
"lec": "^1.0.1",
"lint-staged": "7.0.5",
"lodash.isundefined": "3.0.1",
"lodash.set": "4.3.2",
"markdown-magic": "0.1.21",
"markdown-magic-dependency-table": "1.3.2",
"markdown-magic-install-command": "1.3.1",
"markdown-magic-package-scripts": "1.2.1",
"minami": "1.2.3",
"nsp": "^3.2.1",
"prettier": "1.12.1",
"semantic-release": "15.3.0",
"standard-markdown": "4.0.2",
"standard-version": "4.3.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"eslintIgnore": ["lib/__tests__/coverage/**", "docs/"],
"files": ["lib"],
"greenkeeper": {
"commitMessages": {
"dependencyPin": "fix(${dependency}): pin to ${oldVersion}",
"dependencyUpdate": "fix(${dependency}): update to version ${version}",
"devDependencyPin": "fix(${dependency}): pin to ${oldVersion}",
"devDependencyUpdate": "fix(${dependency}): update to version ${version}",
"initialBadge": "docs(greenkeeper): add greenkeeper badge",
"initialBranches": "build(dependencies): whitelist greenkeeper branches",
"initialDependencies": "fix(pkg): update dependencies"
}
},
"homepage": "https://github.com/commonality/readme-inspector/#readme",
"jest": {
"automock": false,
"collectCoverage": true,
"coverageDirectory": "lib/__tests__/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/docs/",
"<rootDir>/node_modules",
"<rootDir>/lib/__tests__/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleDirectories": ["node_modules", "lib"],
"testMatch": [
"<rootDir>/lib/__tests__/**/*.test.js",
"<rootDir>/lib/__tests__/*.test.js"
],
"testPathIgnorePatterns": ["/docs/", "/node_modules/"],
"watchman": false
},
"keywords": [
"readme",
"readme appraisal",
"readme quality",
"readme score",
"readme-appraisal",
"readme-score",
"recommended community standards",
"repo quality",
"repo-quality",
"repository quality",
"repository-quality",
"score"
],
"license": "MIT",
"lint-staged": {
"*.js": ["npm run lint:js", "git add"],
"*.json": ["npm run lint:json", "git add"],
"*.md": ["npm run lint:md", "npm run docs", "git add"]
},
"main": "lib/index.js",
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/commonality/readme-inspector.git"
},
"scripts": {
"code-quality:sonar":
"sonar-scanner -Dproject.settings=./.github/config/sonar-project.properties -Dsonar.login=$SONAR_COMMONALITY_TOKEN -Dsonar.projectVersion=$npm_package_version -X",
"docs": "npm run docs:toc && npm run docs:api",
"docs:api":
"jsdoc --package ./package.json --configure .github/config/.jsdoc.json --verbose",
"docs:changelog": "standard-version --commit-all",
"docs:toc":
"md-magic --config '.github/config/markdown.config.js' --ignore 'node_modules'",
"lint":
"npm run lint:js && npm run lint:json && npm run lint:manifest && npm run lint:md",
"lint:js": "eslint -c .github/config/.eslintrc.yml --ext .js . --fix",
"lint:json":
"prettier ./**/*.json --ignore-path '.github/config/.prettierignore' --write",
"lint:manifest": "fixpack",
"lint:md": "prettier ./**/*.md -prose-wrap always --write",
"posttest:ci:coverage:codacy":
"cat ./lib/__tests__/coverage/lcov.info | codacy-coverage -l javascript -t $CODACY_PROJECT_TOKEN_README_INSPECTOR",
"posttest:ci:coverage:coveralls":
"cat ./lib/__tests__/coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"prepare": "npm run lint && npm run security",
"prepublish": "npm run security",
"prepublishOnly": "npm run prepare",
"pretest": "npm run lint",
"security": "npm run security:nsp:scan",
"security:nsp:scan": "nsp check",
"test": "jest",
"test:config": "jest --showConfig",
"test:watch": "jest ./lib/__tests__/*.test.js --watch",
"test:watch:all": "jest ./lib/__tests__/*.test.js --watchAll"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}