-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 loc) · 1022 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
{
"author": "Mike Brevoort <[email protected]>",
"name": "reggie",
"description": "An experimental light weight alternative to a full blown npm registry",
"version": "0.2.1",
"bin": {
"reggie": "./client.js",
"reggie-server": "./server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mbrevoort/node-reggie.git"
},
"dependencies": {
"optimist": "~0.3.4",
"restify": "~2.5.1",
"mkdirp": "~0.3.4",
"request": "~2.11.1",
"npm": "~1.1.71",
"tar": "~0.1.17",
"rimraf": "~2.0.2",
"semver": "~1.0.14",
"pkginfo": "~0.2.3",
"read-package-json": "~0.1.5",
"async": "~0.1.22",
"sha": "~1.0.1",
"cookies": "~0.3.6"
},
"devDependencies": {
"mocha": "latest",
"chai": "latest",
"debug": "~0.7.2",
"ini": "~1.1.0",
"proxyquire": "~0.5.1",
"supertest": "~0.9.0"
},
"optionalDependencies": {},
"engines": {
"node": "> 0.6"
},
"scripts": {
"test": "mocha",
"start": "node server.js"
}
}