-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 737 Bytes
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
{
"name": "mtgparser",
"version": "2.0.1",
"description": "Parse MTG results and output JSON",
"main": "build/index.js",
"author": "mlnmln",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mlnmln/mtg-standings-parser.git"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"goose-parser": "^0.2.0-alpha.30",
"lodash": "^4.11.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"phantomjs-prebuilt": "^2.1.7"
},
"scripts": {
"ava": "ava --verbose \"__tests__/**/*.js\"",
"parse": "node src/index.js",
"test": "npm run ava"
},
"eslintConfig": {
"extends": [
"stylelint"
]
}
}