This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
{
"name": "ooyodo",
"version": "0.0.6",
"description": "Data-related tools for [WhoCallsTheFleet](https://github.com/TeamFleet/WhoCallsTheFleet)",
"type": "module",
"author": {
"name": "Diablohu",
"email": "diablohudream@gmail.com",
"url": "http://diablohu.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeamFleet/Ooyodo"
},
"scripts": {
"start": "node start.cjs",
"download": "node start.cjs -- only-download",
"dist": "node start.cjs -- dist",
"dist-hash": "node start.cjs -- dist-hash",
"test": "jest",
"up": "yarn upgrade-interactive --latest",
"prepare": "husky install"
},
"dependencies": {
"decamelize": "^5.0.0",
"fs-extra": "^10.0.1",
"glob-promise": "^4.2.2",
"kckit": "^1.78.0",
"md5-file": "^5.0.0",
"ncp": "^2.0.0",
"nedb-promise": "^2.0.1",
"ora": "^5.4.1",
"progress": "^2.0.3",
"request": "^2.88.2",
"simple-git": "^2.48.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-koot": "^3.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"react": "^17.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write",
"git add"
]
}
}