-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tushare",
"version": "0.3.1",
"description": "port of tushare for nodejs",
"main": "lib/index.js",
"scripts": {
"test": "node ./node_modules/ava/cli.js --verbose test/*",
"build": "node ./node_modules/babel-cli/bin/babel.js src --out-dir lib",
"build:watch": "node ./node_modules/babel-cli/bin/babel.js src --out-dir lib --watch",
"prepublish": "npm run build",
"buildexample": "node ./node_modules/babel-cli/bin/babel.js example --out-dir libexample",
"lint": "node ./node_modules/eslint/bin/eslint.js src/"
},
"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": {
"async": "^2.4.1",
"iconv-lite": "^0.4.15",
"js-base64": "^2.1.9",
"no-fetch": "^1.6.2",
"ramda": "^0.23.0",
"strftime": "^0.10.0",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-runtime": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extargsparse": "^0.2.2"
},
"ava": {
"require": [
"babel-register"
]
}
}