forked from web-platform-dx/web-features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.76 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
69
70
71
72
73
{
"name": "@web-platform-dx/web-features",
"private": true,
"description": "Exploring the set of interoperable features in the Web Platform",
"version": "0.1.0",
"workspaces": [
"packages/compute-baseline"
],
"repository": {
"type": "git",
"url": "https://github.com/web-platform-dx/web-features.git"
},
"type": "module",
"main": "index.ts",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"audit-consumers": "tsx scripts/audit-consumers.ts",
"build": "tsx scripts/build.ts package",
"dist": "tsx scripts/dist.ts",
"undist": "tsx scripts/undist.ts",
"feature-init": "tsx scripts/feature-init.ts",
"format": "npx prettier --write .",
"schematypes": "sh -c \"npx quicktype --lang='typescript' --src-lang schema --src ./schemas/data.schema.json --just-types --prefer-unions --prefer-const-values --top-level=WebFeaturesData | prettier --stdin-filepath ./types.quicktype.ts\"",
"schematypes:write": "npm run --silent schematypes > ./types.quicktype.ts",
"test:caniuse": "tsx scripts/caniuse.ts",
"test:coverage": "npm run --workspaces test:coverage",
"test:dist": "tsx scripts/dist.ts --check",
"test:format": "prettier --check .",
"test:index": "mocha -r tsx './*.test.ts'",
"test:lint": "npx eslint .",
"test:schematypes": "tsx scripts/schema.ts",
"test:specs": "tsx scripts/specs.ts",
"test:types": "npm run --workspaces test:types && tsc",
"test": "npm run test:caniuse -- --quiet && npm run test:schematypes && npm run test:specs && npm run test:types && npm run test:format && npm run test:index && npm run test:dist && npm test --workspaces && npm run test:lint",
"update-drafts": "tsx scripts/update-drafts.ts",
"remove-tagged-compat-features": "tsx scripts/remove-tagged-compat-features.ts && npm run format"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@js-temporal/polyfill": "^0.5.1",
"@mdn/browser-compat-data": "7.2.2",
"@octokit/rest": "^22.0.1",
"@types/caniuse-lite": "^1.0.4",
"@types/node": "^20.19.26",
"ajv": "^8.17.1",
"caniuse-lite": "^1.0.30001760",
"cheerio": "^1.1.2",
"diff": "^8.0.2",
"escape-html": "^1.0.3",
"eslint-plugin-new-with-error": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"fdir": "^6.5.0",
"hast-util-to-string": "^3.0.1",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"quicktype": "^23.2.6",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"ts-json-schema-generator": "^2.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"unified": "^11.0.5",
"web-specs": "^3.74.0",
"winston": "^3.19.0",
"yaml": "^2.8.2",
"yargs": "^18.0.0"
}
}