-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "algorithm-practice",
"version": "1.0.0",
"description": "算法题解析系列文章配套源码",
"private": false,
"publisher": "magicalprogrammer@qq.com",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz",
"ts-node": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likaia/algorithm-practice.git"
},
"author": "likaia",
"license": "MIT",
"bugs": {
"url": "https://github.com/likaia/algorithm-practice/issues"
},
"homepage": "https://github.com/likaia/algorithm-practice#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.0",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "~4.1.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.16.0",
"yarn": "1.22.17"
}
}