-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 864 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 864 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
32
{
"name": "text-highlighter",
"version": "1.0.0",
"description": "A Chrome extension for text highlighting",
"main": "background.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --no-cache",
"deploy": "node ./scripts/deploy.cjs",
"deploy:firefox": "node ./scripts/deploy.cjs firefox",
"version-deploy": "node ./scripts/version-deploy.cjs"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.52.0",
"archiver": "^7.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.52.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {},
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/e2e-tests/"
]
}
}