-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.04 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "chore-cli",
"version": "0.2.3",
"description": "️TypeScript development infrastructure generator.",
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"build": "ts-node scripts/build.ts",
"test": "jest --coverage",
"husky": "husky install"
},
"bin": {
"chore": "src/chore.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iwfan/chore-cli.git"
},
"keywords": [
"cli",
"chore"
],
"author": "iwfan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iwfan/chore-cli/issues"
},
"homepage": "https://github.com/iwfan/chore-cli#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,scss,css,json,md}": [
"pretty-quick --staged"
],
"*.{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"ejs": "^3.1.6",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"lint-staged": "^11.2.6",
"lodash.camelcase": "^4.3.0",
"ora": "^5.4.1",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/ejs": "^3.1.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/inquirer": "^7.3.3",
"@types/jest": "^27.4.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^16.11.21",
"@types/prettier": "^2.4.3",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"esbuild": "^0.12.29",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^3.4.1",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"pretty-quick": "^3.1.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}