-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
139 lines (139 loc) · 4.85 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "mdn-bcd-collector",
"description": "Data collection service for @mdn/browser-compat-data",
"version": "10.12.9",
"private": true,
"license": "Apache-2.0",
"type": "module",
"author": "Gooborg Studios (https://www.gooborg.com)",
"repository": {
"type": "git",
"url": "https://github.com/openwebdocs/mdn-bcd-collector.git"
},
"engines": {
"node": "^20",
"npm": "^10"
},
"scripts": {
"prepare": "tsx prepare.ts",
"format": "ESLINT_USE_FLAT_CONFIG=false eslint . && prettier -c \"**/*.ts\" \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.scss\" \"**/*.yaml\" --color && ejslint views/*",
"format:fix": "ESLINT_USE_FLAT_CONFIG=false eslint --fix . && prettier --write \"**/*.ts\" \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.scss\" \"**/*.yaml\"",
"fix": "npm run format:fix",
"clean": "rm -rf .nyc_output coverage generated tests.json",
"build": "npm run build:compile && npm run build:tests && npm run build:resources",
"build:compile": "tsc -p .",
"build:tests": "tsx test-builder/index.ts",
"build:resources": "tsx prepare-resources.ts",
"gcp-build": "npm run build",
"start": "node app.js",
"dev": "npm i && npm run build:tests && npm run build:resources && nf -j Procfile.dev start",
"unittest": "NODE_ENV=test c8 mocha --require tsx --recursive './**/*.test.ts'",
"coverage": "npm run coverage:report && npm run coverage:open",
"coverage:report": "c8 report -r lcov",
"coverage:open": "open-cli coverage/lcov-report/index.html",
"test": "npm run format && npm run test:types && npm run unittest",
"test:types": "tsc -p . --noEmit",
"selenium": "tsx scripts/selenium.ts",
"update-bcd": "tsx scripts/update-bcd.ts",
"feature-coverage": "tsx scripts/feature-coverage.ts",
"find-missing-features": "tsx scripts/feature-coverage.ts",
"find-missing-reports": "tsx scripts/find-missing-reports.ts",
"add-new-bcd": "tsx scripts/add-new-bcd.ts",
"release": "tsx scripts/release.ts",
"report-stats": "tsx scripts/report-stats.ts"
},
"dependencies": {
"@google-cloud/logging-winston": "6.0.0",
"@google-cloud/storage": "7.15.1",
"@mdi/font": "7.4.47",
"@mdn/browser-compat-data": "5.6.38",
"@octokit/rest": "21.1.0",
"@swc/core": "1.9.3",
"compare-versions": "6.1.1",
"cookie-parser": "1.4.7",
"didyoumean": "1.2.2",
"ejs": "3.1.10",
"es-main": "1.3.0",
"express": "4.21.2",
"express-csp-header": "^6.0.0",
"express-ejs-layouts": "2.5.1",
"express-session": "^1.18.1",
"fs-extra": "11.3.0",
"highlight.js": "^11.11.1",
"json-stable-stringify": "1.2.1",
"marked": "^15.0.7",
"marked-gfm-heading-id": "^4.1.1",
"marked-mangle": "^1.1.10",
"mermaid": "^11.4.1",
"slugify": "1.6.6",
"tsx": "^4.19.2",
"ua-parser-js": "2.0.2",
"wasm-feature-detect": "^1.8.0",
"winston": "3.17.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/eslint-parser": "7.26.8",
"@babel/plugin-syntax-import-assertions": "7.26.0",
"@babel/preset-env": "7.26.8",
"@browser-logos/chrome": "2.0.0",
"@browser-logos/edge": "2.0.7",
"@browser-logos/firefox": "3.0.10",
"@browser-logos/opera": "1.1.11",
"@browser-logos/safari": "2.1.0",
"@listr2/prompt-adapter-enquirer": "^2.0.12",
"@swc/cli": "^0.6.0",
"@swc/helpers": "^0.5.15",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/express-ejs-layouts": "^2.5.4",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "10.0.10",
"@types/node": "22.13.4",
"@types/selenium-webdriver": "^4.1.28",
"@types/superagent": "^8.1.9",
"@types/webidl2": "^24.4.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@webref/css": "6.20.1",
"@webref/elements": "^2.4.0",
"@webref/idl": "3.59.4",
"c8": "10.1.3",
"chai": "4.5.0",
"chai-as-promised": "8.0.1",
"chai-fs": "2.0.0",
"chai-http": "5.1.1",
"chai-subset": "1.6.0",
"chalk": "5.4.1",
"chalk-template": "1.1.0",
"cheerio": "^1.0.0",
"core-js": "^3.40.0",
"ejs-lint": "github:RyanZim/EJS-Lint#7e7d5681ba8d2c768e15a3d77c84662a78ea8db1",
"enquirer": "2.4.1",
"es-scraper": "^0.0.13",
"eslint": "9.20.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "^56.0.1",
"fdir": "6.4.3",
"foreman": "^3.0.1",
"json3": "3.3.3",
"jsonc-parser": "^3.3.1",
"listr2": "8.2.5",
"minimatch": "10.0.1",
"mocha": "10.8.2",
"node-fetch": "3.3.2",
"nodemon": "3.1.9",
"open-cli": "8.0.0",
"prettier": "3.5.0",
"puppeteer": "24.2.1",
"sass": "1.85.0",
"selenium-webdriver": "4.28.1",
"sinon": "19.0.2",
"typescript": "5.7.3",
"webidl2": "24.4.1",
"yaml": "2.7.0"
}
}