-
Notifications
You must be signed in to change notification settings - Fork 221
/
Copy pathpackage.json
142 lines (142 loc) Β· 3.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "nba-go",
"description": "The finest NBA CLI.",
"license": "MIT",
"author": "xxhomey19",
"homepage": "https://github.com/xxhomey19/nba-go#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/xxhomey19/nba-go.git"
},
"bugs": {
"url": "https://github.com/xxhomey19/nba-go/issues"
},
"version": "0.4.0",
"main": "lib/cli.js",
"bin": {
"nba-go": "lib/cli.js",
"ng": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && webpack --config webpack.config.js -p",
"clean": "rimraf lib packed",
"dev": "webpack --config webpack.config.js -d -w",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"pack": "pkg . --out-path packed",
"prepublishOnly": "npm run build && echo '#!/usr/bin/env node' | cat - lib/cli.js > temp && mv temp lib/cli.js",
"test": "npm run lint:fix && npm run testonly:cov",
"testonly": "NODE_ENV=test jest",
"testonly:cov": "jest --coverage --runInBand --forceExit --no-cache",
"testonly:watch": "jest --watch"
},
"dependencies": {
"@babel/register": "^7.0.0",
"async-to-gen": "^1.4.0",
"blessed": "^0.1.81",
"cfonts": "^2.4.0",
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"commander": "^2.19.0",
"date-fns": "^1.30.1",
"delay": "^4.1.0",
"didyoumean": "^1.2.1",
"inquirer": "^6.2.1",
"is-async-supported": "^1.2.0",
"log-update": "^2.2.0",
"luxon": "^1.10.0",
"nba": "^4.5.0",
"nba-color": "^1.3.9",
"nba-stats-client": "^1.0.0",
"node-emoji": "^1.8.1",
"ora": "^3.0.0",
"p-map": "^2.0.0",
"ramda": "^0.26.1",
"stringz": "^1.0.0",
"update-notifier": "^2.5.0",
"wide-align": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"moment-timezone": "^0.5.23",
"pkg": "^4.3.7",
"prettier": "^1.15.3",
"prettier-package-json": "^2.0.1",
"rimraf": "^2.6.3",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"keywords": [
"NBA",
"cli"
],
"engines": {
"node": ">=6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"testPathIgnorePatterns": [
"node_modules/"
]
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"pkg": {
"scripts": [
"lib/**/*.js",
"node_modules/blessed/lib/**/*.js"
],
"assets": "lib/data/fonts/*",
"targets": [
"node8-macos",
"node8-linux",
"node8-win"
]
}
}