-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "registry-validator",
"version": "0.2.1",
"description": "Validate your npm registry implementation, check if it correctly implements the npm protocol.",
"main": "index.js",
"bin": {
"registry-validator": "./bin/registry-validator.js"
},
"directories": {
"test": "test"
},
"scripts": {
"pretest": "jshint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/strongloop/registry-validator.git"
},
"keywords": [
"npm",
"registry",
"protocol",
"test",
"validate"
],
"author": "StrongLoop <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/strongloop/registry-validator/issues"
},
"homepage": "https://github.com/strongloop/registry-validator",
"dependencies": {
"bluebird": "^1.1.0",
"chai": "^1.9.0",
"debug": "^0.7.4",
"fs-extra": "^0.8.1",
"mocha": "^1.18.0",
"npm": "^1.4.4",
"promise": "^4.0.0",
"superagent": "^0.17.0",
"superagent-promise": "^0.1.0"
},
"devDependencies": {
"couchapp": "^0.11.0",
"npmjs.org": "^1.2.0",
"jshint": "^2.4.4"
}
}