-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 879 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
{
"name": "challonge-node",
"version": "1.0.2",
"description": "",
"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/alanhhwong/challonge-node.git"
},
"author": "Alan Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanhhwong/challonge-node/issues"
},
"homepage": "https://github.com/alanhhwong/challonge-node#readme",
"dependencies": {
"request-promise-native": "^1.0.2"
},
"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"
}
}