forked from foolip/mdn-bcd-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.37 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
{
"name": "mdn-bcd-collector",
"description": "Data collection service for @mdn/browser-compat-data",
"version": "6.1.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/foolip/mdn-bcd-collector.git"
},
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "node scripts.js prepare",
"format": "eslint . && prettier -c \"**/*.json\" \"**/*.md\" \"**/*.scss\" \"**/*.yaml\" --color && ejslint views/*",
"format:fix": "eslint --fix . && prettier --write \"**/*.json\" \"**/*.md\" \"**/*.scss\" \"**/*.yaml\"",
"clean": "rm -rf .nyc_output coverage generated tests.json",
"build": "node build.js",
"gcp-build": "npm run build",
"deploy": "gcloud app deploy",
"start": "node app.js",
"start-dev": "npm i && nodemon -e js,json,idl,scss,yaml --exec \"npm run build && npm start\"",
"unittest": "node scripts.js unittest",
"coverage": "c8 report -r lcov && open-cli coverage/lcov-report/index.html",
"test": "npm run format && npm run unittest",
"selenium": "node selenium.js",
"update-bcd": "ts-node update-bcd.ts",
"find-missing-features": "ts-node find-missing-features.ts",
"find-missing-results": "ts-node find-missing-results.ts",
"add-new-bcd": "node add-new-bcd.js",
"release": "node release.js",
"result-stats": "ts-node result-stats.ts"
},
"dependencies": {
"@google-cloud/logging-winston": "5.1.2",
"@google-cloud/storage": "6.2.3",
"@mdi/font": "7.0.96",
"@mdn/browser-compat-data": "5.1.5",
"@octokit/rest": "19.0.3",
"compare-versions": "4.1.3",
"cookie-parser": "1.4.6",
"didyoumean": "1.2.2",
"ejs": "3.1.8",
"es-main": "1.2.0",
"express": "4.18.1",
"express-ejs-layouts": "2.5.1",
"fs-extra": "10.1.0",
"json-stable-stringify": "1.0.1",
"slugify": "1.6.5",
"ua-parser-js": "1.0.2",
"unique-string": "3.0.0",
"winston": "3.8.1",
"yargs": "17.5.1"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/eslint-parser": "7.18.9",
"@babel/plugin-syntax-import-assertions": "7.18.6",
"@babel/preset-env": "7.18.9",
"@browser-logos/chrome": "2.0.0",
"@browser-logos/edge": "2.0.5",
"@browser-logos/firefox": "3.0.9",
"@browser-logos/internet-explorer_9-11": "1.1.16",
"@browser-logos/opera": "1.1.11",
"@browser-logos/safari": "2.1.0",
"@types/mocha": "9.1.1",
"@types/node": "18.6.1",
"@types/yargs": "17.0.10",
"@typescript-eslint/eslint-plugin": "5.31.0",
"@webref/css": "4.3.3",
"@webref/idl": "3.13.0",
"c8": "7.12.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"chai-fs": "2.0.0",
"chai-http": "4.3.0",
"chai-subset": "1.6.0",
"chalk": "5.0.1",
"chalk-template": "0.4.0",
"ejs-lint": "1.2.2",
"enquirer": "2.3.6",
"eslint": "8.20.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"fdir": "5.2.0",
"json3": "3.3.3",
"klaw": "4.0.1",
"listr2": "4.0.5",
"minimatch": "5.1.0",
"mocha": "10.0.0",
"node-fetch": "3.2.9",
"nodemon": "2.0.19",
"open-cli": "7.0.1",
"prettier": "2.7.1",
"puppeteer": "15.5.0",
"sass": "1.54.0",
"selenium-webdriver": "4.3.1",
"sinon": "14.0.0",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"webidl2": "24.2.2",
"yaml": "2.1.1"
}
}