forked from alanhhwong/challonge-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 965 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
{
"name": "challonge-node-ng",
"version": "2.0.0",
"description": "A fork of a node.js library for the Challonge API",
"main": "dist/challonge.js",
"scripts": {
"build": "babel challonge -d dist",
"watch": "babel --watch=./challonge --out-dir=./dist",
"test": "mocha --require babel-register || true",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mastastealth/challonge-node-ng.git"
},
"author": "Brian Franco",
"license": "MIT",
"bugs": {
"url": "https://github.com/mastastealth/challonge-node-ng/issues"
},
"homepage": "https://github.com/mastastealth/challonge-node-ng#readme",
"dependencies": {
"fetch-json": "^2.2.7",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}