forked from ddbeck/mdn-content-inventory
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "@mdn/content-inventory",
"version": "0.2.0",
"description": "The MDN page inventory as a big JSON object.",
"main": "lib/inventory.mjs",
"type": "module",
"scripts": {
"lint": "npx eslint . --ignore-pattern '.mdn-content/*'",
"test": "npx tsc --project jsconfig.json --noEmit",
"build": "node scripts/build.mjs",
"publish": "cd package && npm publish",
"publish:dry-run": "cd package && npm publish --dry-run",
"clean": "rm -f package/*.json"
},
"engines": {
"node": ">=24"
},
"packageManager": "npm@11.6.2",
"repository": {
"type": "git",
"url": "git+https://github.com/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",
"@types/node": "^24.10.3",
"@types/yargs": "^17.0.32",
"eslint": "^8.57.0",
"prettier": "^3.3.0",
"typescript": "^5.4.5",
"winston": "^3.13.0",
"yargs": "^17.7.2"
}
}