-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "jankbot",
"version": "4.0.0",
"description": "A Dota-centric steambot by JankDota",
"main": "jankbot.js",
"scripts": {
"test": "ava",
"ci": "npm run lint && npm run test",
"test:cov": "nyc --all ava",
"lint": "eslint .",
"release": "grunt release",
"start": "node jankbot.js",
"config": "node ./scripts/config.js"
},
"license": "MIT",
"engines": {
"node": ">=8.9.1"
},
"dependencies": {
"dota2": "6.0.1",
"lodash": "4.17.4",
"minimap": "0.1.1",
"semver": "5.3.0",
"steam": "1.4.0"
},
"devDependencies": {
"ava": "1.0.0-beta.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-compress": "1.4.1",
"load-grunt-tasks": "3.5.2",
"mockery": "2.0.0",
"nyc": "^12.0.1",
"sinon": "^5.0.10"
},
"nyc": {
"include": [
"core/*.js",
"lib/*.js",
"jankbot.js"
]
},
"repository": "https://github.com/twisterghost/jankbot"
}