-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 815 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
{
"name": "nhl.js",
"version": "0.2.1",
"description": "Interact with the NHL api",
"homepage": "https://github.com/jbkuczma/nhl.js#readme",
"bugs": {
"url": "https://github.com/jbkuczma/nhl.js/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"watch-build": "npm run build -- -w",
"test": "mocha js:babel-core/register --colors tests/*",
"prettier": "./node_modules/prettier/bin-prettier.js --write src/**/*.js tests/**/*.js"
},
"keywords": [
"NHL",
"hockey"
],
"author": "James Kuczmarski",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"should": "^13.2.3"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}