-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.78 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
{
"name": "create-jwcjs",
"version": "0.1.0-alpha.4",
"description": "A Command Line Tool to create jwc.js project",
"main": "index.js",
"type": "module",
"files": [
"dist",
"index.js",
"package.json",
"LICESE",
"templates"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint-staged": "lint-staged",
"release": "vv"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"jwcjs"
],
"author": "wibus-wee <[email protected]>",
"bugs": {
"url": "https://github.com/jwcjs/create-jwcjs/issues"
},
"homepage": "https://github.com/jwcjs/create-jwcjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jwcjs/create-jwcjs.git"
},
"bin": {
"create-jwcjs": "index.js"
},
"license": "MIT",
"devDependencies": {
"@innei/bump-version": "^1.5.4",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.17",
"@types/prompts": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"cross-spawn": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"kolorist": "^1.6.0",
"lint-staged": "^13.1.0",
"minimist": "^1.2.7",
"prettier": "^2.8.1",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"unbuild": "^1.0.2"
},
"lint-staged": {
"*.{js,ts,css,json}": [
"prettier --write"
]
},
"bump": {
"leading": [
"git pull --rebase"
],
"publish": true,
"changelog": true,
"allowed_branches": [
"main"
]
}
}