-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 900 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 900 Bytes
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
{
"name": "@nodevu/core",
"version": "0.3.0",
"description": "nodevu core API: comprehensive node.js version tooling",
"main": "index.js",
"scripts": {
"lint": "biome check ./",
"lint:write": "biome check ./ --write",
"test": "node --test",
"test:update": "npm run test:update:static && npm run test:update:now",
"test:update:static": "node ./util/dev/updateStaticData.js",
"test:update:now": "node ./util/dev/updateStaticNow.js",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"author": "Tierney Cyren <hello@bnb.im> (https://bnb.im/)",
"license": "MIT",
"files": ["index.js", "LICENSE", "/util/prod"],
"dependencies": {
"@nodevu/parsefiles": "^0.0.3",
"luxon": "^3.5.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"c8": "^10.1.2",
"undici": "^6.20.1"
}
}