forked from gregstewart/farseer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "farseer",
"version": "4.0.3",
"description": "This simple module monitors the Hearthstone log file and emits events based on important events from the log.",
"main": "lib/index.js",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.23.0",
"debug": "^2.5.0",
"extend": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"chai": "^3.2.0",
"cpr": "^2.0.2",
"cross-env": "^4.0.0",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.13.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0"
},
"scripts": {
"compile": "babel -d lib/ src/ && cpr src/log.config lib/log.config -o",
"prepublish": "npm run compile",
"start": "node bootstrap",
"test": "cross-env NODE_ENV=test mocha"
},
"keywords": [
"hearthstone",
"deck tracker",
"log watcher"
],
"author": "Greg Stewart <[email protected]>",
"contributors": [
{
"name": "Chevex",
"url": "https://github.com/chevex"
},
{
"name": "EvilOatmeal",
"url": "https://github.com/EvilOatmeal"
},
{
"name": "keis",
"url": "https://github.com/keis"
},
{
"name": "Tidwell",
"url": "https://github.com/Tidwell"
},
{
"name": "kevinfjbecker",
"url": "https://github.com/kevinfjbecker"
}
],
"repository": {
"type": "git",
"url": "https://github.com/gregstewart/farseer"
},
"bugs": {
"url": "https://github.com/gregstewart/farseer/issues"
},
"license": "ISC",
"engines": {
"node": "5.1.1"
}
}