-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 885 Bytes
/
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
{
"name": "trueskillserver",
"version": "0.0.0",
"description": "A JavaScript server providing a web interface to the TrueSkill ranking algorithm.",
"main": "server.js",
"scripts": {
"start": "node app.js",
"test": "test"
},
"repository": "",
"keywords": [
"Server",
"TrueSkill",
"JavaScript"
],
"author": "Adrian Conlin",
"license": "BSD",
"dependencies": {
"express": "3.3.5",
"jade": "0.34.1",
"jstrueskill": "0.0.1"
},
"devDependencies": {
"blanket": "~1.1.5",
"expect.js": "~0.2.0",
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-connect": "~0.3.0",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-qunit": "~0.2.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "~0.4.4",
"grunt-mocha-test": "~0.7.0"
},
"engines": {
"node": "0.10.13",
"npm": "1.3.2"
}
}