-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "youzanyun-sdk",
"version": "1.0.4",
"description": "YouzanYun SDK for Node",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix src --ext .js",
"test": "mocha --recursive -t 5000",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"keywords": [
"youzan",
"youzanyun",
"sdk",
"open"
],
"author": "youzan",
"license": "MIT",
"homepage": "https://github.com/youzan/open-sdk-node",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/youzan/open-sdk-node.git"
},
"bugs": {
"url": "https://github.com/youzan/open-sdk-node/issues"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"axios": "^0.18.0",
"form-data": "^2.3.3",
"lodash": "^4.17.11",
"qs": "^6.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4"
}
}