forked from blacktail/taobao
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·70 lines (70 loc) · 1.54 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "taobao",
"description": "taobao openapi sdk for node",
"keywords": [
"taobao",
"sdk",
"openapi",
"node-taobao",
"top",
"TaobaoClient",
"taobaoke"
],
"version": "1.0.9",
"homepage": "http://github.com/blacktail/taobao.git",
"author": {
"name": "blacktail",
"email": "mr.zhangping@gmail.com"
},
"repository": {
"type": "git",
"url": "http://github.com/blacktail/taobao.git"
},
"main": "./index",
"contributors": [
{
"name": "blacktail",
"email": "mr.zhangping@gmail.com"
},
{
"name": "RixTox",
"email": "rixtox@gmail.com"
}
],
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"file-type": "^9.0.0",
"form-data": "^2.3.2",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"chai": "3.5.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.0.0-rc.15",
"mocha": "2.4.5",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"supertest": "1.2.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"test": "make test",
"prepublish": "npm prune",
"lint-fix": "node_modules/.bin/eslint --ext .js --ignore-pattern 'lib/' --fix .",
"lint": "node_modules/.bin/eslint --ext .js --ignore-pattern 'lib/' .",
"precommit": "npm run lint && npm run build"
},
"engines": {
"node": ">=0.10"
}
}