forked from alipay/alipay-sdk-nodejs-all
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
{
"name": "@mobileforming/alipay-sdk",
"version": "3.0.10",
"description": "蚂蚁金服开放平台 node sdk",
"main": "lib/alipay.js",
"scripts": {
"tsc": "./node_modules/.bin/tsc -p ./tsconfig.json",
"lint": "tslint -p ./tsconfig.json --fix",
"lint:no-fix": "tslint -p ./tsconfig.json",
"test": "mocha",
"ci": "npm run tsc && npm run lint:no-fix && nyc mocha -t 6000"
},
"author": "tudou527<tudou527@gmail.com>",
"homepage": "https://github.com/ali-sdk/alipay-sdk",
"bugs": "https://github.com/ali-sdk/alipay-sdk/issues",
"license": "ISC",
"dependencies": {
"@types/node": "^9.6.0",
"camelcase-keys": "^4.2.0",
"decamelize": "^2.0.0",
"is": "^3.2.1",
"is-json": "^2.0.1",
"isuri": "^2.0.3",
"moment": "^2.16.0",
"request": "^2.86.0",
"snakecase-keys": "^1.1.1",
"urllib": "^2.17.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [ "lib" ],
"extension": [ ".ts" ],
"check-coverage": true,
"reporter": [
"text-summary",
"json",
"html"
],
"sourceMap": true
},
"ci": {
"version": "8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"mocha": "^3.1.2",
"nyc": "^14.1.1",
"query-string": "^6.5.0",
"should": "^11.1.1",
"sinon": "^1.17.7",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "^2.6.2"
}
}