-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "nopar",
"version": "0.9.0-0",
"description": "Abstrakt Node Package Registry & Proxy",
"bin": {
"nopar": "bin/nopar"
},
"main": "./nopar.js",
"scripts": {
"start": "./bin/nopar",
"test": "jshint *.js lib/*js test/*js && mocha -R spec test/*-test.js",
"watch": "mocha -w -G -R spec test/*-test.js",
"package": "scripts/package"
},
"repository": {
"type": "git",
"url": "[email protected]:bobak/nopar.git"
},
"keywords": [
"npm",
"registry",
"proxy"
],
"homepage": "https://github.com/bobak/nopar/",
"bugs": "https://github.com/bobak/nopar/issues/",
"author": "Andreas F. Bobak <[email protected]>",
"license": "BSD",
"dependencies": {
"body-parser": "^1.19.0",
"connect-flash": "~0.1.1",
"cookie-parser": "^1.4.5",
"daemonize-process": "^3.0.0",
"ejs": "^3.1.6",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"marked": "^2.1.3",
"morgan": "^1.10.0",
"semver": "^7.3.5",
"stylus": "^0.54.8",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"jshint": "^2.13.0",
"mocha": "^9.0.2",
"sinon": "^11.1.1",
"supertest": "^1.2.0"
},
"engines": {
"node": ">=0.10.25"
},
"build": {
"number": "0",
"id": "[email protected]",
"url": ""
}
}