-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "ctfjs",
"version": "0.8.0",
"description": "A CTF platform backend API.",
"main": "ctf.js",
"scripts": {
"pretest": "eslint .",
"test": "nyc mocha --exit -C --timeout 10000",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blairsec/ctfjs.git"
},
"author": "kmh11",
"license": "MIT",
"bin": {
"ctfjs": "./command.js"
},
"bugs": {
"url": "https://github.com/blairsec/ctfjs/issues"
},
"homepage": "https://github.com/blairsec/ctfjs#readme",
"dependencies": {
"body-parser": "^1.19.2",
"commander": "^7.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.4",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.7.3",
"pm2": "^5.2.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"supertest": "^6.1.3"
}
}