forked from waditu/tushare.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
45
46
{
"name": "tushare",
"version": "0.2.1",
"description": "port of tushare for nodejs",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/tape/bin/tape test/**/*.js",
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib",
"build:watch": "./node_modules/babel-cli/bin/babel.js src --out-dir lib --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruanyl/tushare.js.git"
},
"keywords": [
"github",
"api"
],
"author": "Ruan Yulong <[email protected]> (http://github.com/ruanyl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ruanyl/tushare.js/issues"
},
"homepage": "https://github.com/ruanyl/tushare.js#readme",
"dependencies": {
"js-base64": "^2.1.9",
"moment": "^2.11.0",
"superagent": "^1.6.1",
"superagent-charset": "^0.1.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-runtime": "^6.3.19",
"dotenv": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0",
"webpack": "^1.12.9"
}
}