-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "nfive-hub",
"version": "1.0.0",
"description": "Hub for NFive plugin repositories hosted via Github",
"license": "GPL-3.0",
"repository": "NFive/hub",
"homepage": "https://nfive.io/",
"bugs": {
"url": "https://github.com/NFive/hub/issues"
},
"keywords": [
"nfive",
"nfive-plugins",
"plugin-repository"
],
"main": "server.js",
"scripts": {
"watch": "nodemon -L -e js,json,pug",
"lint": "eslint . && pug-lint ./views",
"test": "jest --detectOpenHandles --forceExit",
"watch-test": "jest --watch --detectOpenHandles"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@octokit/app": "^3.0.2",
"@octokit/rest": "^16.28.7",
"@octokit/webhooks": "^6.2.1",
"config": "^3.2.2",
"cron": "^1.7.1",
"js-yaml": "^3.13.1",
"koa": "^2.7.0",
"koa-body": "^4.1.0",
"koa-compress": "^3.0.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^7.2.1",
"koa-static-cache": "^5.1.1",
"koa-views": "^6.2.0",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"marked-sanitizer-github": "^1.0.0",
"moment": "^2.24.0",
"mongoose": "^5.6.7",
"node-fetch": "^2.6.0",
"numeral": "^2.0.6",
"octicons": "^8.5.0",
"pug": "^2.0.4",
"semver": "^6.3.0",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.1.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.2",
"nodemon": "^1.19.1",
"pug-lint": "^2.6.0"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"collectCoverage": true
}
}