-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.44 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
{
"name": "whats-alipay",
"version": "0.1.5",
"description": "Yet Another Alipay OpenAPI SDK",
"main": "index.js",
"scripts": {
"lint": "eslint --ext \".js\" index.js bin lib tests",
"test": "mocha --check-leaks ./tests/*.test.js ./tests/**/*.test.js"
},
"engines": {
"node": ">=10.15"
},
"files": [
"index.js",
"bin/",
"lib/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"bin": {
"whatsCli": "./bin/cli.js",
"certHelper": "./bin/cert.js"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNorthMemory/whats-alipay.git"
},
"keywords": [
"alipay",
"alipay-openapi",
"locale-date-time",
"json-like-parser",
"rsa-sha256",
"rsa-sha1",
"aes-cbc"
],
"author": "James ZHANG",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheNorthMemory/whats-alipay/issues"
},
"homepage": "https://github.com/TheNorthMemory/whats-alipay#readme",
"dependencies": {
"axios": "^0.21.2"
},
"peerDependencies": {
"@fidm/x509": "^1.2.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^9.0.1",
"nock": "^13.1.0",
"should": "^13.2.3"
}
}