forked from web-platform-dx/web-features
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"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": ">=18.19.0"
},
"scripts": {
"build:extended": "tsx scripts/build.ts extended-json",
"build": "tsx scripts/build.ts package",
"dist": "tsx scripts/dist.ts",
"feature-init": "tsx scripts/feature-init.ts",
"format": "npx prettier --write .",
"schema:write": "npm run schema -- --out ./schemas/data.schema.json",
"schema": "ts-json-schema-generator --tsconfig ./tsconfig.json --path ./types.ts --type=WebFeaturesData",
"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:lint": "npx eslint .",
"test:schema": "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:schema && npm run test:specs && npm run test:format && npm run test:dist && npm run test --workspaces && npm run test:lint",
"update-drafts": "tsx scripts/update-drafts.ts",
"migrate-to-bcd": "tsx scripts/migrate-to-bcd.ts"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@js-temporal/polyfill": "^0.4.4",
"@mdn/browser-compat-data": "^5.6.13",
"@types/caniuse-lite": "^1.0.4",
"@types/diff": "^5.2.3",
"@types/node": "^18.19.64",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"caniuse-lite": "^1.0.30001677",
"diff": "^7.0.0",
"eslint-plugin-new-with-error": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"fdir": "^6.4.2",
"hast-util-to-string": "^3.0.1",
"prettier": "^3.3.3",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"ts-json-schema-generator": "^2.3.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"unified": "^11.0.5",
"web-specs": "^3.24.0",
"winston": "^3.16.0",
"yaml": "^2.6.0",
"yargs": "^17.7.2"
}
}