-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 937 Bytes
/
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
{
"name": "hots-parser",
"version": "7.55.6",
"description": "A node-based Heroes of the Storm match parser.",
"main": "parser.js",
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "node node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebshimizu/hots-parser.git"
},
"keywords": [
"nodejs"
],
"author": "Evan Shimizu <falindrith@gmail.com>",
"contributors": [
{
"name": "Justin J. Novack",
"email": "jnovack@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ebshimizu/hots-parser/issues"
},
"homepage": "https://github.com/ebshimizu/hots-parser#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0"
},
"dependencies": {
"heroprotocol": "GaryIrick/heroprotocol",
"pino": "^4.17.5",
"xregexp": "^4.2.0"
}
}