-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1021 Bytes
/
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
{
"name": "nice-package",
"version": "0.0.0-development",
"description": "Clean up messy package metadata from the npm registry",
"main": "index.js",
"scripts": {
"test": "mocha && standard && standard-markdown"
},
"repository": "https://github.com/nice-registry/nice-package",
"keywords": [
"npm",
"registry",
"package",
"metadata",
"package.json",
"normalize",
"clean",
"JSON"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"require-dir": "^0.3.0",
"standard": "^7.1.2",
"standard-markdown": "^1.2.1",
"semantic-release": "^15.13.16"
},
"dependencies": {
"github-url-to-object": "^4.0.4",
"lodash": "^4.17.2",
"normalize-registry-metadata": "^1.1.2",
"revalidator": "^0.3.1",
"semver": "^5.2.0"
},
"engines": {
"node": ">=4"
},
"standard": {
"env": {
"mocha": true
}
}
}