-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
64
65
66
{
"name": "ap-npm",
"version": "0.5.3",
"description": "Private Authenticated NPM Repository",
"main": "cli.js",
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build",
"test": "mocha ./test ./test/util ./test/storage ./test/routes ./test/commands --reporter=spec --full-trace --compilers js:babel-core/register",
"lint": "jshint ./src && jshint ./test && eslint ./src && eslint ./test",
"start": "babel-node --presets es2015,stage-2 ./src/cli.js"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"bin": {
"ap-npm": "./bin/ap-npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/genkgo/ap-npm.git"
},
"author": "Frederik Bosh, Mèir Noordermeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/genkgo/ap-npm/issues"
},
"homepage": "https://github.com/genkgo/ap-npm#readme",
"dependencies": {
"body-parser": "^1.17.1",
"chai": "^4.0.2",
"colors": "^1.1.2",
"commander": "^2.9.0",
"express": "^4.15.2",
"fs-extra": "^3.0.1",
"http-proxy": "^1.16.2",
"httpolyglot": "^0.1.2",
"js-sha256": "^0.5.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0"
},
"keywords": [
"private",
"npm",
"package",
"repository",
"registry",
"server"
],
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^4.1.1",
"jshint": "^2.9.5",
"md5": "^2.2.1",
"mocha": "^3.4.2"
},
"directories": {
"test": "test"
}
}