forked from mdn/browser-compat-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@mdn/browser-compat-data",
"version": "5.1.1",
"description": "Browser compatibility data provided by MDN Web Docs",
"main": "index.ts",
"type": "module",
"engines": {
"node": ">=16.15.0 <17.0.0 || >=17.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdn/browser-compat-data.git"
},
"keywords": [
"bcd",
"browser-compat-data",
"browser",
"compatibility",
"data",
"mdn",
"mozilla"
],
"author": "MDN Web Docs",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/mdn/browser-compat-data/issues"
},
"homepage": "https://github.com/mdn/browser-compat-data#readme",
"devDependencies": {
"@babel/eslint-parser": "~7.18.2",
"@babel/plugin-syntax-import-assertions": "~7.17.12",
"@desertnet/html-parser": "~1.0.1",
"@types/deep-diff": "~1.0.1",
"@types/mocha": "~9.1.1",
"@types/node": "~18.0.0",
"@types/yargs": "~17.0.10",
"@typescript-eslint/eslint-plugin": "~5.28.0",
"ajv": "~8.11.0",
"ajv-errors": "~3.0.0",
"ajv-formats": "~2.1.1",
"better-ajv-errors": "~1.2.0",
"browser-specs": "~3.13.0",
"c8": "~7.11.2",
"chalk": "~5.0.1",
"chalk-template": "~0.4.0",
"compare-versions": "~4.1.1",
"deep-diff": "~1.0.2",
"es-main": "~1.0.2",
"eslint": "~8.17.0",
"eslint-config-prettier": "~8.5.0",
"eslint-config-standard": "~17.0.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-promise": "~6.0.0",
"fast-json-stable-stringify": "~2.1.0",
"fdir": "~5.2.0",
"json-schema-to-typescript": "~10.1.5",
"mdn-confluence": "~2.2.2",
"mocha": "~10.0.0",
"open-cli": "~7.0.1",
"ora": "~6.1.0",
"prettier": "~2.7.0",
"ts-node": "github:queengooborg/ts-node#patch-1-built",
"tslib": "~2.4.0",
"typescript": "~4.7.2",
"yargs": "~17.5.0"
},
"scripts": {
"prepare": "npm run gentypes",
"confluence": "node ./node_modules/mdn-confluence/main/generate.es6.js --output-dir=. --bcd-module=./index.js",
"diff": "ts-node scripts/diff.ts",
"unittest": "c8 mocha index.test.ts --recursive \"{,!(node_modules)/**}/*.test.ts\"",
"coverage": "c8 report -r lcov && open-cli coverage/lcov-report/index.html",
"format": "npx eslint \"**/*.ts\" && npx prettier --check \"**/*.md\" \"**/*.json\"",
"format:fix": "npx eslint --fix \"**/*.ts\" && npx prettier --write \"**/*.md\" \"**/*.json\"",
"lint": "ts-node test/lint",
"fix": "npm run format:fix && ts-node scripts/fix/index",
"stats": "ts-node scripts/statistics",
"build": "ts-node scripts/release/build",
"gentypes": "ts-node scripts/generate-types",
"release-pulls": "ts-node scripts/release/pulls",
"release-notes": "ts-node scripts/release/notes",
"release-stats": "ts-node scripts/release/stats",
"remove-redundant-flags": "ts-node scripts/remove-redundant-flags",
"show-errors": "npm test 1> /dev/null",
"test": "npm run format && npm run lint && npm run unittest",
"traverse": "ts-node scripts/traverse"
}
}