-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "qq-mini-pay",
"version": "1.0.9",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "mocha",
"format": "prettier --write '**/*'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jike-engineering/node-qq-mini-pay.git"
},
"author": "RenzHoly <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jike-engineering/node-qq-mini-pay/issues"
},
"homepage": "https://github.com/jike-engineering/node-qq-mini-pay#readme",
"dependencies": {
"debug": "^4.3.1",
"got": "^11.8.2",
"lodash": "^4.17.21",
"nanoid": "^3.1.23"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"assert": "^2.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"npm run format",
"git add"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}