-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "statusboard",
"version": "1.0.0",
"description": "Community & Open Source Statusboard",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/npm/statusboard.git"
},
"keywords": [],
"author": "GitHub Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/statusboard/issues"
},
"homepage": "https://github.com/npm/statusboard#readme",
"workspaces": [
"workspaces/*"
],
"devDependencies": {
"@npmcli/eslint-config": "^6.0.0",
"@npmcli/template-oss": "4.30.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.30.0",
"content": "./scripts/template-oss",
"dependabotInterval": "weekly",
"testRunner": "node:test"
},
"scripts": {
"template-oss-apply": "template-oss-apply --force",
"lint": "npm run eslint",
"postlint": "template-oss-check",
"lintfix": "npm run eslint -- --fix",
"snap": "node --test --test-update-snapshots './test/**/*.js'",
"test": "node --test './test/**/*.js'",
"posttest": "npm run lint",
"test-all": "npm run test --workspaces --include-workspace-root --if-present",
"lint-all": "npm run lint --workspaces --include-workspace-root --if-present",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"test:cover": "node --test --experimental-test-coverage --test-timeout=3000 --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100 './test/**/*.js'",
"test:node20": "node --test test"
},
"files": [
"bin/",
"lib/"
],
"engines": {
"node": ">=24.10.0"
}
}