forked from olistic/warriorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "warriorjs",
"version": "2.2.0",
"bin": "./bin/warriorjs",
"description": "Game written in JavaScript for learning JavaScript and artificial intelligence",
"main": "index.js",
"scripts": {
"compile": "babel src -d lib",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-register --ui bdd --reporter spec --recursive",
"test-travis": "echo \"No ES5 tests yet\" && exit 0",
"lint": "eslint . --ext .js --ignore-path .gitignore --ignore-pattern templates"
},
"repository": {
"type": "git",
"url": "https://github.com/olistic/warriorjs.git"
},
"keywords": [
"es6",
"es7",
"es2015",
"es2016",
"warriorjs",
"core",
"engine",
"play",
"game",
"fun",
"teach",
"learn",
"ai",
"interactive",
"cli"
],
"author": "Matias Olivera <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/olistic/warriorjs/issues"
},
"homepage": "https://github.com/olistic/warriorjs",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"mocha": "^2.5.3"
},
"dependencies": {
"bluebird": "^3.4.1",
"chalk": "^1.1.3",
"ejs": "^2.4.2",
"fs-extra": "^0.30.0",
"glob": "^7.0.5",
"inquirer": "^1.1.2",
"warriorjs-engine": "^0.11.0",
"yargs": "^4.7.1"
}
}