-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 854 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
{
"name": "nodescore",
"version": "0.2.3-alpha",
"description": "Wrapper for Football API",
"main": "build",
"scripts": {
"test": "nyc mocha --reporter spec --timeout 10000 --require babel-core/register && eslint src --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel src -s -d build",
"prepublishOnly": "npm run build"
},
"author": "Sandi Karajic",
"license": "MIT",
"babel": {
"presets": [
"env"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"dotenv": "^4.0.0",
"eslint": "^4.8.0",
"eslint-config-google": "^0.9.1",
"mocha": "^4.0.1",
"nyc": "^12.0.1"
},
"dependencies": {
"fs-extra": "^4.0.2",
"promise": "^8.0.1",
"watchjs": "0.0.0"
}
}