forked from GitbookIO/nuts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 KB
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
{
"name": "nuts-serve",
"version": "2.7.6",
"description": "Server to make GitHub releases (private) available to download with Squirrel support",
"exports": "./lib/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/GitbookIO/nuts",
"license": "Apache-2.0",
"dependencies": {
"analytics-node": "^6.2.0",
"basic-auth": "1.0.3",
"body-parser": "^1.20.3",
"destroy": "1.0.3",
"express": "^4.13.3",
"express-useragent": "0.1.9",
"github-webhook-handler": "^1.0.0",
"got": "^14.4.7",
"lodash": "^4.17.21",
"octonode": "0.10.2",
"q": "1.2.0",
"semver": "^5.7.2",
"stores": "0.0.2",
"strip-bom": "2.0.0",
"uuid": "2.0.1"
},
"devDependencies": {
"mocha": "^11.7.1",
"mockery": "^1.4.0",
"rewire": "^2.5.1",
"should": "7.0.4"
},
"bugs": {
"url": "https://github.com/GitbookIO/nuts/issues"
},
"authors": [
{
"name": "Samy Pesse",
"email": "samypesse@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/nuts.git"
},
"scripts": {
"start": "node bin/web.js",
"test": "mocha --reporter list"
}
}