forked from JSJitsu/hero-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 721 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 721 Bytes
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
{
"name": "hero-starter",
"version": "0.0.0",
"main": "helpers.js",
"scripts": {
"sanity": "mocha -R spec ./test/spec/HeroBrainSpec.js",
"lint": "eslint ./",
"test": "npm run sanity && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/JSJitsu/hero-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JSJitsu/hero-starter/issues"
},
"homepage": "https://github.com/JSJitsu/hero-starter",
"devDependencies": {
"chai": "^1.9.2",
"commander": "^2.9.0",
"eslint": "^3.8.0",
"mocha": "^1.21.4"
},
"dependencies": {
"ai-battle-engine": "git+https://github.com/JSJitsu/ai-battle-engine.git"
}
}