-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
{
"name": "auto-wangda",
"version": "2.0.5",
"description": "my astonishing project",
"keywords": [],
"repository": {
"url": "qige2016/auto-wangda",
"type": "git"
},
"license": "MIT",
"author": "qige2016<286882998@qq.com>",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"autoWangda": "bin/cli.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf dist",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"dev": "yarn build --watch",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"release": "node scripts/release.js",
"test": "jest --runInBand"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint --fix",
"git add"
]
},
"dependencies": {
"axios": "^0.21.1",
"cac": "^6.6.1",
"chalk": "^4.1.0",
"crypto-js": "^4.0.0",
"dot-prop": "^6.0.1",
"enquirer": "^2.3.6",
"env-paths": "^2.2.0",
"node-schedule": "^1.3.2",
"qs": "^6.9.4"
},
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/eslint": "^7.2.5",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.8",
"@types/node-schedule": "^1.3.1",
"@types/prettier": "^2.1.5",
"@types/qs": "^6.9.5",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"yorkie": "^2.0.0"
}
}