-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "@ddbeck/mdn-content-inventory",
"version": "0.2.0",
"description": "The MDN page inventory as a big JSON object.",
"main": "src/index.mts",
"scripts": {
"lint": "npx eslint . --ignore-pattern '.mdn-content/*'",
"test": "npx tsc --noEmit",
"build": "npx tsx scripts/build.mts",
"publish": "cd package && npm publish",
"publish:dry-run": "cd package && npm publish --dry-run",
"clean": "rm -f package/*.json"
},
"engines": {
"node": "^24.11.1",
"npm": "^11.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddbeck/mdn-content-inventory.git"
},
"author": "Daniel D. Beck <daniel@ddbeck.com> (https://ddbeck.com)",
"license": "Apache-2.0",
"private": "true",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@js-temporal/polyfill": "^0.4.4",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.5",
"@types/yargs": "^17.0.32",
"eslint": "^8.57.0",
"prettier": "^3.3.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"winston": "^3.13.0",
"yargs": "^17.7.2"
}
}