-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.71 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.71 KB
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
{
"name": "github-bookmarked-issues",
"version": "1.0.1",
"description": "Track your bookmarked GitHub issues across all repositories with cross-device sync",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf build/",
"prebuild": "npm run clean",
"build:chrome": "node scripts/copy.js chrome && node scripts/build.js chrome && node scripts/package.js chrome",
"build:firefox": "node scripts/copy.js firefox && node scripts/build.js firefox && node scripts/package.js firefox",
"build": "npm run build:chrome && npm run build:firefox",
"postbuild": "npm run lint",
"dev:watch": "node scripts/dev-watch.js",
"lint": "web-ext lint --source-dir=build/firefox --artifacts-dir=build --warnings-as-errors",
"test": "playwright test && wdio run wdio.conf.js",
"test:chrome": "playwright test",
"test:visual": "playwright test --grep @visual",
"test:visual:update": "playwright test --grep @visual --update-snapshots",
"test:firefox": "wdio run wdio.conf.js",
"package": "npm run build",
"publish:dry-run": "publish-extension --chrome-zip build/bundle/*.zip --firefox-zip build/bundle/*.xpi --dry-run",
"publish": "publish-extension --chrome-zip build/bundle/*.zip --firefox-zip build/bundle/*.xpi"
},
"dependencies": {
"@github/relative-time-element": "5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@wdio/cli": "^9.23.3",
"@wdio/local-runner": "^9.23.3",
"@wdio/mocha-framework": "^9.23.3",
"@wdio/spec-reporter": "^9.23.3",
"@wdio/visual-service": "^9.1.3",
"chokidar": "^5.0.0",
"dotenv": "^17.2.3",
"geckodriver": "^6.1.0",
"publish-browser-extension": "^4.0.4",
"web-ext": "^9.0.0"
}
}