-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "data",
"version": "1.0.0",
"private": true,
"type": "module",
"exports": {
".": "./lib/index.js"
},
"scripts": {
"fetch:data": "node ./bin/fetch-data.js",
"fetch:maintained": " node ./bin/fetch-maintained.js",
"test": "node --test './test/**/*.js'",
"lint": "npm run eslint",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run eslint -- --fix",
"snap": "node --test --test-update-snapshots './test/**/*.js'",
"posttest": "npm run lint",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"test:cover": "node --test --experimental-test-coverage --test-timeout=3000 './test/**/*.js'",
"test:node20": "node --test test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/npm/statusboard.git",
"directory": "workspaces/data"
},
"keywords": [],
"author": "GitHub Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/statusboard/issues"
},
"homepage": "https://github.com/npm/statusboard#readme",
"dependencies": {
"@octokit/core": "^7.0.0",
"@octokit/graphql": "^9.0.1",
"@octokit/plugin-retry": "^8.0.1",
"@octokit/plugin-throttling": "^11.0.1",
"@octokit/rest": "^22.0.0",
"dotenv": "^17.4.2",
"eslint-import-resolver-typescript": "^4.4.5",
"glob": "^13.0.5",
"lodash": "^4.18.1",
"pacote": "^21.5.1",
"proc-log": "^7.0.0",
"semver": "^7.8.4",
"www": "^1.0.0"
},
"devDependencies": {
"@npmcli/eslint-config": "^7.0.0",
"@npmcli/template-oss": "5.1.0"
},
"files": [
"bin/",
"lib/"
],
"engines": {
"node": ">=24.10.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "5.1.0",
"content": "../../scripts/template-oss",
"testRunner": "node:test",
"coverageThreshold": 0
}
}