-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "wecom",
"version": "0.8.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/witjs/wecom.git"
},
"keywords": [
"企业微信",
"wecom",
"sdk",
"nodejs",
"typescript"
],
"homepage": "https://github.com/witjs/wecom",
"author": "witjs <github@sina.cn>",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "yarn run build && yarn link && yarn link \"wecom\" && jest",
"lint": "eslint . --ext .ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"axios": "^0.20.0",
"form-data": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"conventional-changelog-cli": "^2.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "2.1.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}