-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "orange-juice",
"version": "0.1.0",
"description": "An opensource API Server of Online Judge",
"main": "index.js",
"scripts": {
"test": "npm run cover && npm run docs",
"start": "node index.js",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"jsdoc": "jsdoc -c conf.json",
"apidoc": "apidoc -i lib -o docs/api",
"docs": "npm run jsdoc && npm run apidoc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/function-x/Orange-Juice.git"
},
"keywords": [
"online",
"judge"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/function-x/Orange-Juice/issues"
},
"homepage": "https://github.com/function-x/Orange-Juice#readme",
"dependencies": {
"body-parser": "^1.15.2",
"co": "^4.6.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-session": "^1.14.2",
"forever-monitor": "^1.7.1",
"isemail": "^2.2.1",
"mongoose": "^4.7.0",
"morgan": "^1.7.0",
"superagent": "^3.3.1"
},
"devDependencies": {
"apidoc": "^0.16.1",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.1.2",
"supertest": "^2.0.1"
}
}