-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 KB
/
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
42
43
44
{
"name": "tradier-client",
"version": "1.0.0",
"description": "Node API wrapper for the Tradier API",
"main": "build/index.js",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build",
"test": "mocha test/test.js --compilers js:babel-register",
"test:watch": "npm test -- --watch",
"start": "babel-node --presets es2015 src/index.js",
"prepublish": "npm run build"
},
"keywords": [
"tradier",
"stock-prices",
"sdk",
"finance",
"fintech",
"market-data"
],
"author": "Vincent Porta <vporta7@gmail.com> (http://www.vincentjporta.com/)",
"license": "MIT",
"babel": {
"presets": [
"latest"
]
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.24.1",
"chai": "3.5.0",
"mocha": "3.3.0",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"axios": "0.16.1",
"bluebird": "3.5.0"
}
}