This repository was archived by the owner on Mar 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 KB
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
{
"private": true,
"scripts": {
"bootstrap": "node ./bootstrap.js",
"publish": "node ./publish.js",
"test": "jest "
},
"repository": {
"type": "git",
"url": "https://github.com/cmux/koot-kit"
},
"keywords": [
"koot"
],
"author": {
"name": "diablohu",
"email": "diablohudream@gmail.com",
"url": "http://diablohu.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/cmux/koot-kit/issues"
},
"homepage": "https://github.com/cmux/koot-kit",
"engines": {
"node": ">=10.13.0"
},
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-koot": "^3.1.1",
"husky": "^7.0.2",
"inquirer": "^8.1.2",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"lerna-wizard": "^1.1.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"prettier-eslint": "^13.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{xxxxxx}": [
"tsc --noEmit"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
}
}