-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
41 lines (41 loc) · 919 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
34
35
36
37
38
39
40
41
{
"name": "betfair",
"version": "0.7.8",
"description": "Betfair JSON API",
"main": "index.js",
"private": false,
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-src": "babel --presets es2015 src/lib --out-dir ./lib",
"build-test": "babel --presets es2015 src/test --out-dir ./test",
"build": "npm run build-src && npm run build-test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/AlgoTrader/betfair.git"
},
"keywords": [
"betfair",
"sports",
"json",
"new",
"api"
],
"author": "AlgoTrader",
"license": "BSD",
"dependencies": {
"async": "*",
"betfair-emulator": "*",
"node-uuid": "*",
"querystring": "*",
"lodash": "*"
},
"optional": false,
"devDependencies": {
"babel-preset-es2015": "^6.6.0"
}
}