-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 779 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 779 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
33
34
35
36
{
"name": "node-shiftstats",
"description": "Library for talking with DigitalShift network sites (HockeyShift, BasketballShift, etc.)",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/parnic/node-shiftstats.git",
"keywords": [
"digitalshift",
"sports",
"stats",
"hockey",
"hockeyshift",
"basketball",
"basketballshift",
"soccer",
"soccershift",
"lacrosse",
"lacrosseshift",
"football",
"footballshift",
"baseball",
"baseballshift"
],
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.9.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^11.1.0"
},
"scripts": {
"test": "mocha test/*.spec.js",
"pretest": "eslint --ignore-path .gitignore ."
}
}