-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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": "utility",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.7.4"
},
"scripts": {
"test": "jest",
"prepare": "husky install",
"cm": "cz",
"build": "tsc -p tsconfig.build.json"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --ext .js,.ts --fix"
],
"*.{md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZY-Cheng/Utility.git"
},
"author": "ZY-Cheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZY-Cheng/Utility/issues"
},
"homepage": "https://github.com/ZY-Cheng/Utility#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}