forked from davidtodd/landmarks
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.42 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
{
"name": "landmarks",
"version": "2.13.0",
"private": true,
"type": "module",
"scripts": {
"prebuild:all": "npm test",
"build:all": "node scripts/build.js --browser all",
"check-message-passing": "rg '\\.sendMessage|\\.postMessage' src/code",
"clean:builds": "node scripts/build.js --browser all --clean",
"prepare": "husky && tsx scripts/generate-valid-elements.ts",
"profile": "node scripts/profile.js",
"start:_core": "web-ext --no-config-discovery run --start-url https://matatk.agrip.org.uk/landmarks/world-of-wombats/ --browser-console",
"start:chrome": "npm run start:_core -- --source-dir build/chrome --target chromium",
"start:edge": "npm run start:_core -- --source-dir build/edge --target chromium --chromium-binary '/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge'",
"start:firefox": "npm run start:_core -- --source-dir build/firefox",
"start:opera": "npm run start:_core -- --source-dir build/opera --target chromium --chromium-binary /Applications/Opera.app/Contents/MacOS/opera",
"pretest": "tsc --build && eslint .",
"test": "npx c8 --reporter text --reporter html ava && npm run test:css",
"test:css": "npx stylelint --config .stylelintrc.json src/**/*.css"
},
"ava": {
"files": [
"!test/generated-*.js",
"!test/rollup.config.js"
]
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/chrome": "^0.0.270",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"addons-linter": "^6.33.0",
"archiver-promise": "~1.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"deepmerge": "~4.3",
"dependency-tree": "^11.0.1",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^6.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"husky": "^9.1.5",
"jsdom": "^25.0.0",
"page-structural-semantics-scanner-tests": "git+https://[email protected]/matatk/page-structural-semantics-scanner-tests.git#0.8.0",
"puppeteer": "^23.2.1",
"release-it": "^17.6.0",
"replace-in-file": "^8.1.0",
"rollup": "^4.21.2",
"rollup-plugin-prettier": "^4.1.1",
"sharp": "^0.33.5",
"stats-lite": "~2.2",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
}
}