-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 KB
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
{
"name": "@nodevu/static",
"version": "0.0.4",
"description": "static outputs from @nodevu/core",
"main": "index.js",
"scripts": {
"build": "npm run build:default && npm run build:releases && npm run build:security && npm run build:support",
"build:default": "node build/default.js",
"build:releases": "node build/releases.js",
"build:security": "node build/security.js",
"build:support": "node build/support.js",
"lint": "biome check ./",
"lint:write": "biome check ./ --write",
"prepublish": "npm run build",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cutenode/nodevu.git"
},
"keywords": ["node.js", "version", "versions"],
"files": ["/data", "index.js", "LICENSE"],
"author": "Tierney Cyren <hello@bnb.im>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cutenode/nodevu/issues"
},
"homepage": "https://github.com/cutenode/nodevu#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"c8": "^10.1.2"
}
}