-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
{
"name": "Satellite",
"main": "server/app.js",
"version": "0.0.0-1",
"private": true,
"homepage": "satellite-game.com",
"author": "Satellite Team",
"license": "BSD",
"repository": {
"type": "git",
"url": "https://github.com/satellite-game/Satellite.git"
},
"bugs": {
"url": "https://github.com/satellite-game/Satellite/issues"
},
"devDependencies": {
"grunt": "0.4.x",
"mocha": "~1.17.0",
"karma": "~0.10.9",
"karma-mocha": "~0.1.1",
"karma-sinon-chai": "~0.1.4",
"karma-firefox-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.0",
"karma-coverage": "~0.1.2",
"grunt-mocha-chai-sinon": "0.0.7",
"karma-phantomjs-launcher": "~0.1.1",
"karma-sauce-launcher": "~0.1.7"
},
"engines": {
"node": "*",
"npm": "*"
},
"keywords": [
"game",
"webgl",
"satellite",
"oculus",
"oculus rift",
"multiplayer",
"three.js"
],
"dependencies": {
"socket.io": "~0.9.16",
"express": "~3.3.5",
"async": "~0.2.10",
"redis": "~0.10.0",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "0.5.x",
"grunt-contrib-concat": "0.3.x",
"grunt-contrib-copy": "0.4.x",
"grunt-contrib-watch": "0.3.x",
"grunt-contrib-uglify": "0.2.x",
"grunt-contrib-jshint": "0.4.x",
"grunt-contrib-stylus": "0.7.x",
"grunt-nodemon": "~0.1.0",
"grunt-concurrent": "~0.3.0",
"grunt-open": "~0.2.2",
"grunt-karma": "~0.6.2",
"newrelic": "~1.3.1"
},
"scripts": {
"start": "node server/app.js",
"test": "grunt travisCI --force"
},
"postinstall": "./node_modules/.bin/grunt client"
}