-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
{
"name": "cz-format-extension",
"version": "1.5.1",
"description": "",
"keywords": [
"commitizen",
"git-cz"
],
"homepage": "https://github.com/tyankatsu0105/cz-format-extension#readme",
"bugs": {
"url": "https://github.com/tyankatsu0105/cz-format-extension/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyankatsu0105/cz-format-extension.git"
},
"license": "MIT",
"author": "tyankatsu <[email protected]> (https://tyankatsu.netlify.com/)",
"contributors": [
{
"name": "camcam-lemon",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"precommit": "lint-staged",
"commit": "git-cz",
"dev": "tsc -w",
"release": "shipjs prepare",
"test": "jest",
"test:cli": "sh scripts/test-cli",
"test:watch": "jest --watch",
"typecheck": "tsc --project ./tsconfig.build.json --noEmit"
},
"dependencies": {
"@types/inquirer": "^8.2.0",
"cosmiconfig": "^7.0.1",
"git-repo-info": "^2.1.1",
"inquirer": "^8.2.0",
"simple-git": "^3.2.6",
"tslib": "^2.3.1"
},
"devDependencies": {
"@swc/core": "^1.2.145",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"shipjs": "^0.25.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"engines": {
"node": "^12 || ^14 || ^16 || ^17 || ^18"
}
}