-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "nus",
"productName": "Node/npm Update Script",
"version": "0.1.0",
"description": "A script to update all node/npm packages in a project",
"type": "module",
"exports": "./index.js",
"bin": {
"nus": "./index.js"
},
"scripts": {
"fix": "eslint --fix index.js",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint index.js",
"tsc": "tsc",
"update": "npx -y jelmerro/nus"
},
"repository": "https://github.com/Jelmerro/nus",
"keywords": [
"Nodejs",
"Npm",
"Updater"
],
"author": "Jelmer van Arnhem",
"email": "[email protected]",
"funding": "https://github.com/sponsors/Jelmerro/",
"license": "MIT",
"dependencies": {
"semver": "7.6.3"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/semver": "7.5.8",
"eslint-config": "github:Jelmerro/eslint-config",
"typescript": "5.7.3"
},
"engines": {
"node": ">=16"
}
}