-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "tiny-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "npm i && npx lerna bootstrap",
"dev": "lerna run watch --stream --parallel",
"dev:local": "esno ./packages/cli/core/src/index.ts",
"build": "lerna run build",
"link": "lerna run link",
"lint": "eslint . --ext .js,.ts --fix",
"format": "prettier --write **/*{.vue,.js,.ts,.html,.json}",
"publish": "lerna run build && lerna exec npm publish",
"clean": "lerna clean && rm -rf node_modules && lerna run clean",
"clean:dist": "lerna run clean",
"commit": "git-cz",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"babel-eslint": "^10.1.0",
"chalk": "^5.2.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"esno": "^4.7.0",
"husky": "^7.0.4",
"lerna": "^5.4.2",
"lint-staged": "^13.0.3",
"prettier": "^2.8.0",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"prettier --write",
"eslint --fix"
]
}
}