-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
{
"name": "nuts",
"version": "3.1.1",
"description": "Server to make private GitHub releases available to download with Squirrel support",
"main": "./lib/index.js",
"homepage": "https://github.com/biw/nuts",
"license": "Apache-2.0",
"dependencies": {
"@types/jest": "^26.0.21",
"analytics-node": "2.1.1",
"basic-auth": "1.0.3",
"body-parser": "1.12.3",
"destroy": "1.0.4",
"express": "^4.13.3",
"express-useragent": "1.0.15",
"feed": "^0.3.0",
"github-webhook-handler": "0.5.0",
"http-errors": "^1.5.0",
"lodash": "4.17.21",
"lru-diskcache": "1.1.1",
"octocat": "1.2.1",
"q": "1.2.0",
"request": "2.88.2",
"semver": "5.0.1",
"stream-res": "1.0.1",
"strip-bom": "2.0.0",
"understudy": "4.1.0",
"urljoin.js": "0.1.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.13.10",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/q": "^1.5.4",
"@types/request": "^2.48.5",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"expect": "^26.6.2",
"jest": "^26.6.3",
"mocha": "8.3.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-eslint-cli": "^5.0.1",
"should": "13.2.3",
"supertest": "^2.0.0"
},
"bugs": {
"url": "https://github.com/biw/nuts/issues"
},
"authors": [
{
"name": "Samy Pesse",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Ben Williams",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/biw/nuts.git"
},
"scripts": {
"start": "node bin/web.js",
"dev": "export $(grep -v '^#' .env | xargs) && nodemon bin/web.js",
"test": "export $(grep -v '^#' .env | xargs) && jest",
"test:ci": "jest --ci",
"lint": "eslint bin lib __mocks__ __tests__"
}
}