-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 876 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 876 Bytes
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
{
"name": "pixelup-extension",
"version": "0.3.0",
"description": "The pixelUP web browser extension",
"repository": "git@github.com:EIP-PixelUP/PU_Extension.git",
"author": "pixelUP",
"scripts": {
"lint": "eslint .",
"format": "prettier --check .",
"build": "./build.sh chromium firefox",
"postinstall": "playwright install-deps",
"test": "playwright test --config tests/playwright.json",
"prepare": "husky install"
},
"dependencies": {
"webextension-polyfill": ">=0.6 <1"
},
"devDependencies": {
"@playwright/test": "^1.12",
"@typescript-eslint/eslint-plugin": "^4.16",
"@typescript-eslint/parser": "^4.16",
"eslint": "^7",
"eslint-config-prettier": "^8",
"husky": "^6",
"playwright": "^1.12",
"prettier": "2.3.0",
"typescript": "^4.2",
"web-ext": "^6",
"web-ext-types": "^3"
}
}