-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
{
"name": "packages-update",
"version": "2.0.0",
"main": "./lib/index.js",
"type": "commonjs",
"bin": {
"pu": "lib/bin/index.js",
"packages-update": "lib/bin/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "shx chmod +x lib/bin/index.js",
"update": "tsx src/bin/index.ts",
"test": "poku --parallel",
"eslint:checker": "eslint . --ext .js,.ts",
"eslint:fix": "eslint . --fix --config ./.eslintrc.json",
"lint:checker": "npm run eslint:checker && npm run prettier:checker",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:checker": "prettier --check .",
"prettier:fix": "prettier --write .github/workflows/*.yml ."
},
"license": "MIT",
"keywords": [
"npm",
"package",
"packages",
"update",
"updater",
"upgrade",
"upgrades",
"dependencies",
"registry",
"check",
"checker",
"version",
"versions",
"npu",
"ncu",
"package.json",
"management",
"npm-check-updates",
"cli"
],
"author": "https://github.com/wellwelwel",
"description": "📦 A flexible and lightweight updater for packages",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellwelwel/packages-update.git"
},
"bugs": {
"url": "https://github.com/wellwelwel/packages-update/issues"
},
"homepage": "https://github.com/wellwelwel/packages-update#readme",
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"poku": "^1.13.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
}
}