forked from os-scar/overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.36 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
{
"name": "overlay",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/os-scar/overlay.git"
},
"bugs": {
"url": "https://github.com/os-scar/overlay/issues",
"email": "[email protected]"
},
"scripts": {
"postinstall": "husky install && playwright install --with-deps chromium",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests",
"test:components": "cd tests/components && vite",
"e2e": "yarn build && playwright test",
"e2e:debug": "yarn e2e --debug",
"build": "gulp build",
"build:watch": "gulp --series build watch",
"lint": "eslint src tests e2e",
"lint:fix": "yarn lint --fix",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts npm yarn --validate-https --validate-package-names --validate-integrity --empty-hostname false",
"lint:firefox": "yarn build && web-ext lint --source-dir ./dist/firefox",
"__start": "web-ext run --start-url https://pypi.org/project/pandas/ --start-url https://www.npmjs.com/package/node-sass",
"start:chrome": "yarn __start --source-dir ./dist/chrome --target chromium",
"start:firefox": "yarn __start --source-dir ./dist/firefox"
},
"devDependencies": {
"@playwright/test": "^1.35.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chrome": "^0.0.206",
"@types/firefox-webext-browser": "^111.0.1",
"@vitejs/plugin-vue": "^3.2.0",
"@webcomponents/custom-elements": "^1.5.1",
"del": "^7.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-zip": "^5.1.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"js-yaml": "^4.1.0",
"lint-staged": "^13.1.2",
"lockfile-lint": "^4.10.0",
"node-fetch": "^2.0.0",
"prettier": "2.8.3",
"rollup": "^3.9.1",
"sass": "^1.58.3",
"vite": "^3.2.3",
"vite-svg-loader": "^4.0.0",
"vue": "^3.2.41",
"web-ext": "^7.5.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"lru-cache": "^8.0.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"{src,tests}/**/*.js": "eslint --fix"
}
}