forked from rlidwka/sinopia
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 1.99 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cinabre",
"version": "0.1.0",
"description": "Private npm repository server",
"repository": {
"type": "git",
"url": "git://github.com/soyhuce/cinabre"
},
"main": "index.js",
"bin": {
"cinabre": "./bin/cinabre"
},
"dependencies": {
"JSONStream": "^1.1.1",
"async": "^1.5.0",
"body-parser": "^1.15.1",
"bunyan": "^1.8.1",
"commander": "^2.9.0",
"compression": "^1.6.2",
"cookies": "^0.6.1",
"es6-shim": "^0.35.1",
"express": "^4.0.0",
"express-json5": ">=0.1.0 <1.0.0-0",
"handlebars": "^4.0.5",
"highlight.js": "^9.4.0",
"http-errors": "^1.5.0",
"jju": "^1.3.0",
"js-yaml": "^3.6.1",
"lunr": "^0.7.1",
"marked": "^0.3.5",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.1",
"nocache": "^1.0.0",
"readable-stream": "~2.1.4",
"request": "^2.72.0",
"semver": "^5.0.0",
"sinopia-htpasswd": ">= 0.4.3"
},
"optionalDependencies": {
"fs-ext": "^0.5.0",
"crypt3": "^0.2.0"
},
"devDependencies": {
"rimraf": "^2.5.2",
"bluebird": "^3.4.0",
"mocha": "^2.5.3",
"eslint": "3.0.1",
"browserify": "^13.0.1",
"browserify-handlebars": "^1.0.0",
"grunt": "^1.0.1",
"grunt-cli": "*",
"grunt-browserify": "^5.0.0",
"grunt-contrib-less": "^1.3.0",
"grunt-contrib-watch": "^1.0.0",
"unopinionate": "^0.0.4",
"onclick": "^0.1.0",
"transition-complete": "^0.0.2"
},
"keywords": [
"private",
"package",
"repository",
"registry",
"modules",
"proxy",
"server"
],
"scripts": {
"start": "node ./bin/cinabre",
"test": "eslint . && mocha ./test/functional ./test/unit",
"test-travis": "eslint . && mocha -R spec ./test/functional ./test/unit",
"test-only": "mocha ./test/functional ./test/unit",
"lint": "eslint ."
},
"engines": {
"node": ">=0.10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": {
"type": "MIT",
"url": "http://spdx.org/licenses/MIT"
}
}