-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "registry-static",
"version": "2.4.0",
"description": "create a static, flat file based npm registry",
"bin": {
"registry-static": "./bin/registry-static"
},
"man": "./man/registry-static.1",
"main": "./lib/index.js",
"dependencies": {
"async": "~0.8.0",
"davlog": "~1.1.0",
"dnscache": "0.0.4",
"event-stream": "^3.3.4",
"express": "^4.13.4",
"follow-registry": "^3.1.0",
"fs-blob-store": "^5.2.1",
"graceful-fs": "^2.0.3",
"http-https": "^1.0.0",
"mississippi": "^1.2.0",
"mkdirp": "~0.4.0",
"once": "^1.3.3",
"patch-package-json": "^0.0.4",
"prettysize": "~0.0.3",
"request": "^2.87.0",
"rimraf": "^2.6.2",
"slice-file": "^0.2.1",
"timethat": "~0.0.2",
"yargs": "^1.3.3"
},
"devDependencies": {
"abstract-blob-store": "^3.3.4",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"marked-man": "^0.1.6",
"mocha": "^2.5.3",
"mockery": "^1.7.0",
"supertest": "^1.2.0"
},
"scripts": {
"prepublish": "mkdirp man && marked-man README.md > man/registry-static.1",
"pretest": "jshint ./bin/* ./lib/* ./tests/*",
"test": "istanbul cover --print both -- _mocha tests"
},
"repository": {
"type": "git",
"url": "git@github.com:davglass/registry-static.git"
},
"author": "Dav Glass <davglass@gmail.com>",
"license": "BSD",
"bugs": {
"url": "https://github.com/davglass/registry-static/issues"
},
"homepage": "https://github.com/davglass/registry-static"
}