-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.53 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": "kckit",
"main": "index.js",
"version": "1.87.0",
"description": "Javascript library for KanColle",
"sideEffects": false,
"author": {
"name": "Diablohu",
"email": "[email protected]",
"url": "http://diablohu.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamFleet/KCKit"
},
"scripts": {
"eslint": "eslint \"!(node_modules)/**/*.+(js|jsx)\"",
"test": "jest",
"test:base": "jest ./test/base.test.js",
"test:check": "jest ./test/check.test.js",
"test:calculate": "jest ./test/calculate.test.js",
"up": "npx npm-check-updates -i",
"prepare": "husky install"
},
"dependencies": {
"camelcase": "6.3.0"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "^8.57.0",
"eslint-config-koot": "^4.0.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"whocallsthefleet-database": "^0.0.2024030800"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write",
"git add"
]
}
}