-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.5 KB
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
{
"name": "ism",
"version": "0.6.0",
"description": "Turn-based multiplayer nation building strategy game",
"main": "ism.js",
"keywords": [
"ism",
"game",
"strategy",
"turn-based",
"civ",
"empire",
"sandbox",
"multiplayer"
],
"files": [
"./lib",
"./data",
"./termclient",
"./map-config"
],
"dependencies": {
"noisejs": "~2.1.0",
"optimist": "~0.6.0",
"JSONStream": "~0.7.1",
"sockjs": "~0.3.8",
"sockjs-client": "~0.1.3",
"level": "~0.18.0",
"async": "~0.2.9",
"blessed": "0.0.25",
"a-star": "~0.1.0",
"errno": "~0.1.0",
"extend": "~1.2.1",
"string-hash": "~1.1.0"
},
"devDependencies": {
"mocha": "~1.14.0",
"chai": "~1.8.1",
"sinon": "~1.7.3",
"memdown": "~0.6.0",
"tmp": "0.0.23"
},
"scripts": {
"test": "./node_modules/.bin/mocha --check-leaks --ui=tdd --timeout=1000 test/*.js",
"utest": "./node_modules/.bin/mocha --check-leaks --ui=tdd --timeout=1000 test/*-test.js",
"dtest": "./node_modules/.bin/mocha --debug-brk --check-leaks --ui=tdd --timeout=1000 test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/caseman/ism.git"
},
"bin": {
"ism": "./termclient.js",
"ism-server": "./server.js"
},
"contributors": [
{"name": "Casey Duncan", "email": "casey.duncan@gmail.com"},
{"name": "Peter Braden"},
{"name": "Niall O'Higgins"}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/caseman/ism/issues"
}
}