-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "@unsync/nodejs-tools",
"type": "module",
"version": "1.0.5",
"description": "Shared tools for my projects",
"license": "MIT",
"repository": "unsync/nodejs-tools",
"main": "dist/index.js",
"files": [
"dist",
"scripts/postinstall.cjs"
],
"engines": {
"node": ">=18"
},
"scripts": {
"checkdeps": "ncu",
"checkdeps:apply": "ncu -u",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "exit 0",
"prepare": "husky",
"release:patch": "npm version -m 'release:patch' patch",
"release:minor": "npm version -m 'release:minor' minor",
"release:major": "npm version -m 'release:major' major",
"postinstall": "node scripts/postinstall.cjs",
"build": "tsc"
},
"dependencies": {
"lodash": "^4.17.21",
"logform": "^2.6.0",
"npm-check-updates": "^16.14.14",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.15",
"@unsync/eslint": "^1.0.22",
"@unsync/tsconfig": "1.0.12",
"husky": "^9.0.7",
"lint-staged": "^15.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts,vue,json}": "eslint --fix ."
}
}