forked from mdn/browser-compat-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.07 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
91
92
93
94
95
{
"name": "@mdn/browser-compat-data",
"version": "5.2.46",
"description": "Browser compatibility data provided by MDN Web Docs",
"main": "index.ts",
"type": "module",
"engines": {
"node": ">=18.0.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.21.3",
"@babel/plugin-syntax-import-assertions": "~7.20.0",
"@desertnet/html-parser": "~1.0.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.36",
"@types/deep-diff": "~1.0.1",
"@types/mocha": "~10.0.0",
"@types/node": "~18.15.0",
"@types/yargs": "~17.0.10",
"@typescript-eslint/eslint-plugin": "~5.57.0",
"@typescript-eslint/parser": "^5.44.0",
"ajv": "~8.12.0",
"ajv-errors": "~3.0.0",
"ajv-formats": "~2.1.1",
"better-ajv-errors": "~1.2.0",
"c8": "~7.13.0",
"chalk": "~5.2.0",
"chalk-template": "~1.0.0",
"compare-versions": "~5.0.0",
"deep-diff": "~1.0.2",
"es-main": "~1.2.0",
"eslint": "~8.36.0",
"eslint-config-prettier": "~8.8.0",
"eslint-config-standard": "~17.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "~2.27.4",
"eslint-plugin-jsdoc": "~40.1.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prefer-arrow-functions": "~3.1.4",
"eslint-plugin-prettier": "~4.2.1",
"eslint-plugin-promise": "~6.1.0",
"eslint-plugin-unicorn": "^46.0.0",
"fast-json-stable-stringify": "~2.1.0",
"fdir": "~6.0.1",
"husky": "^8.0.1",
"json-schema-to-typescript": "~10.1.5",
"lint-staged": "^13.0.3",
"mocha": "~10.2.0",
"open-cli": "~7.2.0",
"ora": "~6.3.0",
"prettier": "~2.8.0",
"ts-node": "~10.9.1",
"typescript": "~5.0.2",
"web-specs": "^2.41.0",
"yargs": "~17.7.0"
},
"scripts": {
"prepare": "husky install && 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": "eslint . && prettier --check .",
"format:fix": "eslint --quiet --fix . && prettier --write .",
"lint": "ts-node test/lint.ts",
"lint:fix": "ts-node scripts/fix/index.ts",
"fix": "npm run format:fix && npm run lint:fix",
"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"
}
}