-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "design_pattern",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc --watch",
"c": "git-cz",
"version": "standard-version"
},
"standard-version": {
"changelogHeader": "# Changelog\n\n所有项目的变更记录会记录在如下文件.\n",
"dryRun": true
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/morrain/design_pattern.git"
},
"keywords": [
"design",
"pattern"
],
"author": "morrain",
"license": "ISC",
"bugs": {
"url": "https://github.com/morrain/design_pattern/issues"
},
"homepage": "https://github.com/morrain/design_pattern#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"standard-version": "^9.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}