-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
55 lines (55 loc) · 1.37 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
{
"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": "^5.0.0",
"@npmcli/template-oss": "4.23.4",
"tap": "^21.0.1"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.23.4",
"content": "./scripts/template-oss"
},
"tap": {
"allow-empty-coverage": true,
"exclude": [
"workspaces/**"
]
},
"scripts": {
"template-oss-apply": "template-oss-apply --force",
"lint": "npm run eslint",
"postlint": "template-oss-check",
"lintfix": "npm run eslint -- --fix",
"snap": "tap",
"test": "tap",
"posttest": "npm run lint",
"test-all": "npm run test -ws -iwr --if-present",
"lint-all": "npm run lint -ws -iwr --if-present",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
},
"files": [
"bin/",
"lib/"
],
"engines": {
"node": "^18.17.0 || >=20.5.0"
}
}