forked from olistic/warriorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
50
51
52
53
54
55
56
{
"name": "warriorjs",
"version": "0.7.0",
"bin": "./bin/warriorjs",
"description": "Game written in JavaScript for learning JavaScript and artificial intelligence",
"main": "index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"test": "make test",
"test-travis": "echo \"No ES5 tests yet\" && exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/olistic/warriorjs.git"
},
"keywords": [
"play",
"game",
"fun",
"teach",
"learn",
"es6",
"es7",
"ai",
"artificial-intelligence",
"warrior",
"warriorjs",
"interactive",
"cli"
],
"author": "Matias Olivera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/olistic/warriorjs/issues"
},
"homepage": "https://github.com/olistic/warriorjs",
"devDependencies": {
"arrow-mocha": "^1.0.1",
"babel": "^5.3.0",
"chai": "^2.3.0",
"mocha": "^2.2.4",
"sinon": "^1.14.1"
},
"dependencies": {
"babel": "^5.3.3",
"chalk": "^1.0.0",
"ejs": "^2.3.1",
"fs-extra": "^0.18.2",
"glob": "^5.0.5",
"lodash": "^3.7.0",
"readline-sync": "^1.2.14",
"thread-sleep": "^1.0.3",
"yargs": "^3.8.0"
}
}