-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.3 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
{
"name": "magic-needle",
"version": "1.0.0",
"description": "数据分析工具",
"scripts": {
"dev": "node ./task/dev.js",
"build": "node ./task/build.js",
"lint": "eslint --ext .ts --ext .d.ts src",
"cl": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"cz": "git cz"
},
"keywords": [
"excel",
"数据分析"
],
"main": "mn.js",
"bin": {
"mn": "./bin/mn"
},
"author": "chad.ding",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/node": "^12.11.5",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/inquirer": "^6.5.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"inquirer": "^7.0.0",
"node-xlsx": "^0.15.0",
"prompt": "^1.0.0",
"yargs": "^14.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}