-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "storm-replay",
"version": "0.4.0",
"description": "NodeJS wrapper for StormLib (https://github.com/ladislav-zezula/StormLib)",
"main": "index.js",
"scripts": {
"cpplint": "node_modules/node-cpplint/bin/cpplint --verbose 3 src/storm-replay.cpp --linelength 120",
"jslint": "node_modules/jshint/bin/jshint *.js",
"rebuild": "node-gyp rebuild",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "node_modules/mocha/bin/mocha",
"prepare": "git submodule init && git submodule update",
"predeploy": "git checkout -- test/replays/example.StormReplay && npm test && npm run cpplint && npm run jslint && npm run rebuild && git checkout -- test/replays/example.StormReplay"
},
"author": "Justin J. Novack <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jnovack/storm-replay.git"
},
"bugs": {
"url": "https://github.com/jnovack/storm-replay/issues"
},
"homepage": "https://github.com/jnovack/storm-replay",
"engines": {
"node": ">8 <11"
},
"os": [
"darwin",
"linux"
],
"keywords": [
"hots",
"blizzard",
"stormreplay",
"mpq"
],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.10.0",
"pino": "^4.17.5"
},
"devDependencies": {
"chai": "^4.1.2",
"grunt": "^1.1.0",
"grunt-concurrent": "^2.1.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-simple-mocha": "^0.4.1",
"mocha": "^7.2.0",
"node-cpplint": "^0.4.0"
}
}