-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
{
"name": "evtc",
"version": "0.4.1",
"description": "An evtc parser for Guild Wars 2 logs.",
"main": "lib/index.js",
"scripts": {
"start": "cross-env NODE_PATH=src babel-node --presets es2016 program.js",
"build": "npm run lint && babel ./src -d ./lib",
"prepare": "npm run build",
"lint": "prettier-eslint '{**/*,*}.{js,json}' '!node_modules/**' '!lib/**'",
"test": "cross-env NODE_PATH=src nyc mocha --require babel-core/register --require babel-polyfill --recursive",
"coveralls": "cross-env NODE_PATH=src nyc report --require babel-core/register --require babel-polyfill --recursive --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielsmith4483/evtc.git"
},
"keywords": [
"evtc",
"gw2",
"log",
"guild",
"wars",
"arc",
"arcdps",
"raids"
],
"author": "Daniel Smith <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielsmith4483/evtc/issues"
},
"homepage": "https://github.com/danielsmith4483/evtc#readme",
"dependencies": {
"adm-zip": "^0.4.7",
"babel-runtime": "^6.26.0",
"gw2api-client": "^5.6.5",
"moment": "^2.20.1",
"request": "^2.83.0",
"smart-buffer": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class": "^0.3.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-moment": "^0.1.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.4.1",
"prettier-eslint-cli": "^4.6.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}