forked from jdx/npm-register
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 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
56
57
58
59
60
61
62
63
{
"name": "npm-register",
"description": "Your own private npm registry and backup server",
"version": "2.6.2",
"author": "Jeff Dickey (@jdxcode)",
"bin": "bin/npm-register",
"bugs": "https://github.com/jdxcode/npm-register",
"dependencies": {
"aws-sdk": "^2.104.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"debug": "^3.0.1",
"express": "^4.15.4",
"fs-extra": "^4.0.1",
"htpasswd-auth": "^2.0.0",
"http-call": "^4.0.4",
"ioredis": "^3.1.4",
"klaw": "^2.1.0",
"lodash": "^4.17.4",
"metric-log": "^1.0.1",
"on-finished": "^2.3.0",
"opbeat": "^4.15.1",
"s3": "^4.4.0",
"sinon": "^4.1.2",
"uuid": "^3.1.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"standard": "^10.0.3",
"supertest": "^3.0.0",
"tmp": "^0.0.33",
"unexpected": "^10.36.2"
},
"engineStrict": true,
"engines": {
"node": ">=8.4.0"
},
"enginesStrict": {
"node": ">=8.0.0"
},
"files": [
"bin",
"lib"
],
"homepage": "https://github.com/jdxcode/npm-register",
"keywords": [
"npm"
],
"license": "ISC",
"main": "lib/start.js",
"repository": "jdxcode/npm-register",
"scripts": {
"start": "node bin/npm-register start",
"test": "nyc mocha && standard"
},
"standard": {
"env": "mocha"
}
}