forked from kshvmdn/nba.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "nba.js",
"version": "0.6.1",
"description": "Interact with current and historical NBA stats, scores, and data.",
"keywords": [
"nba",
"basketball"
],
"homepage": "https://github.com/kshvmdn/nba.js#readme",
"bugs": {
"url": "https://github.com/kshvmdn/nba.js/issues"
},
"license": "MIT",
"author": {
"name": "Kashav Madan",
"email": "kshvmdn@gmail.com",
"url": "http://kshvmdn.com/"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kshvmdn/nba.js.git"
},
"scripts": {
"clean": "rimraf lib/",
"build": "npm run clean && babel src/ -d lib/",
"build:watch": "npm run build -- -w",
"prepublish": "npm run test && npm run build",
"lint": "eslint src/",
"test": "npm run lint && mocha --compilers js:babel-core/register --colors --bail --reporter spec $(find src/ -name \"*.spec.js\") --timeout 30000",
"test:coverage": "istanbul cover -x *.spec.js _mocha -- --compilers js:babel-core/register --colors --reporter dot $(find src/ -name \"*.spec.js\") --timeout 30000"
},
"dependencies": {
"got": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"eslint-plugin-prettier": "^2.4.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.2.0",
"prettier": "^1.9.2",
"rimraf": "^2.5.4",
"should": "^13.1.3"
},
"engines": {
"node": ">=6"
}
}