forked from nydus/heroprotocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.39 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
{
"name": "heroprotocol",
"version": "2.0.0",
"description": "Javascript port of the heroprotocol Python library to decode Heroes of the Storm replay protocols.",
"main": "index.js",
"dependencies": {
"download-github-repo": "^0.1.3",
"empeeku": "^1.0.2",
"fs-extra": "^0.26.7",
"long": "^3.0.3",
"pino": "^4.17.5",
"yargs": "^3.32.0"
},
"optionalDependencies": {
"storm-replay": "^0.3.0-alpha.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nydus/heroprotocol.git"
},
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "node_modules/mocha/bin/mocha",
"postinstall": "node postinstall.js"
},
"keywords": [
"hots",
"blizzard",
"stormreplay",
"mpq"
],
"author": {
"name": "Justin J. Novack",
"email": "[email protected]"
},
"contributors": [
{
"name": "Mathieu Merdy",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/nydus/heroprotocol/issues"
},
"homepage": "https://github.com/nydus/heroprotocol",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"grunt": "latest",
"grunt-concurrent": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-simple-mocha": "latest",
"mocha": "^5.2.0"
}
}