-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "unpm",
"version": "1.5.0",
"description": "private npm registry in node",
"main": "./index.js",
"scripts": {
"test": "node ./test",
"start": "node bin/server.js | bunyan",
"coverage": "node scripts/coverage.js",
"coveralls": "npm run coverage | ./node_modules/coveralls/bin/coveralls.js"
},
"bin": {
"unpm": "./bin/server.js"
},
"author": "Michael Hayes",
"dependencies": {
"bunyan": "^1.8.0",
"concat-stream": "^1.4.6",
"mkdirp": "^0.3.5",
"nopt": "^2.2.1",
"range_check": "1.2.0",
"request": "^2.34.0",
"semver": "^2.3.2",
"unpm-auth": "^1.1.0",
"unpm-fs-backend": "^0.1.0",
"unpm-router": "^0.1.0"
},
"license": "MIT",
"devDependencies": {
"tape": "2.5.0",
"blanket": "1.1.6",
"coveralls": "2.8.0",
"mocha-lcov-reporter": "0.0.1",
"unpm-mem-backend": "0.4.1",
"jsl": "0.1.1"
},
"repository": {
"type": "git",
"url": "git://github.com/hayes/unpm.git"
},
"keywords": [
"npm",
"private",
"registry",
"fnpm",
"unpm",
"package",
"manager"
],
"bugs": {
"url": "https://github.com/hayes/unpm/issues"
},
"homepage": "https://github.com/hayes/unpm"
}