forked from mdn/browser-compat-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.91 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
{
"name": "@mdn/browser-compat-data",
"version": "5.1.9",
"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.18.6",
"@desertnet/html-parser": "~1.0.1",
"@types/deep-diff": "~1.0.1",
"@types/mocha": "~9.1.1",
"@types/node": "~18.7.1",
"@types/yargs": "~17.0.10",
"@typescript-eslint/eslint-plugin": "~5.33.0",
"ajv": "~8.11.0",
"ajv-errors": "~3.0.0",
"ajv-formats": "~2.1.1",
"better-ajv-errors": "~1.2.0",
"browser-specs": "~3.17.0",
"c8": "~7.12.0",
"chalk": "~5.0.1",
"chalk-template": "~0.4.0",
"compare-versions": "~4.1.1",
"deep-diff": "~1.0.2",
"es-main": "~1.2.0",
"eslint": "~8.22.0",
"eslint-config-prettier": "~8.5.0",
"eslint-config-standard": "~17.0.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jsdoc": "~39.3.4",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prefer-arrow-functions": "~3.1.4",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.0.0",
"fast-json-stable-stringify": "~2.1.0",
"fdir": "~5.2.0",
"json-schema-to-typescript": "~10.1.5",
"mocha": "~10.0.0",
"open-cli": "~7.0.1",
"ora": "~6.1.0",
"prettier": "~2.7.0",
"ts-node": "~10.9.1",
"tslib": "~2.4.0",
"typescript": "~4.7.2",
"yargs": "~17.5.0"
},
"scripts": {
"prepare": "npm run gentypes",
"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 --quiet --fix \"**/*.ts\" && npx prettier --write \"**/*.md\" \"**/*.json\"",
"lint": "ts-node test/lint.ts",
"fix": "npm run format:fix && ts-node scripts/fix/index.ts",
"stats": "ts-node scripts/statistics.ts",
"build": "ts-node scripts/release/build.ts",
"gentypes": "ts-node scripts/generate-types.ts",
"release": "ts-node scripts/release/index.ts",
"remove-redundant-flags": "ts-node scripts/remove-redundant-flags.ts",
"show-errors": "npm test 1> /dev/null",
"test": "npm run format && npm run lint && npm run unittest",
"traverse": "ts-node scripts/traverse.ts"
}
}