-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "soccer-predictor",
"version": "0.0.2",
"description": "A JS library that predicts soccer match outcomes using basic mathematics",
"main": "lib/index.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "nyc mocha test --compilers js:babel-core/register",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"clean": "rm -rf lib",
"build": "babel src -d lib",
"preversion": "npm run lint && npm run test",
"version": "auto-changelog --package --template compact && git add CHANGELOG.md",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "https://github.com/CookPete/soccer-predictor.git"
},
"author": "Pete Cook <[email protected]> (http://github.com/cookpete)",
"license": "CC0-1.0",
"devDependencies": {
"auto-changelog": "^0.3.3",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^4.1.2",
"codecov": "^2.3.0",
"mocha": "^3.0.2",
"nyc": "^11.2.1",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"standard": {
"parser": "babel-eslint"
},
"nyc": {
"reporter": [
"text",
"html"
],
"temp-directory": "./coverage/.nyc_output"
}
}