-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "tbs",
"version": "0.0.1",
"description": "Turn-based strategy.",
"homepage": "https://github.com/CardForest/tbs",
"author": {
"name": "Amit Portnoy",
"email": "[email protected]",
"url": "https://github.com/amitport"
},
"repository": "CardForest/tbs",
"license": "AGPL",
"files": [
"index.js"
],
"keywords": [
"tbs",
"game",
"engine",
"turn-based"
],
"dependencies": {
"bluebird": "^2.9.25",
"key-path": "^0.3.2",
"master-class": "^0.2.0",
"primus": "^3.0.2",
"ws": "^0.7.1"
},
"devDependencies": {
"browserify": "^10.1.3",
"browserify-shim": "^3.8.6",
"express": "^4.12.3",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsdoc": "^0.6.3",
"grunt-mocha-cli": "^1.13.0",
"jshint-stylish": "^1.0.2",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.1.4",
"load-grunt-tasks": "^3.1.0",
"mocha": "^2.2.5",
"sinon": "^1.14.1",
"time-grunt": "^1.2.0"
},
"scripts": {
"test": "grunt",
"browser": "browserify browser/index.js > browser.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"primusClient": "./lib/transport/primus/generatedPrimusClient.js"
},
"browserify-shim": {
"primusClient": "Primus"
}
}