-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 748 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 748 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
{
"name": "highlighter",
"version": "4.0.5",
"description": "Chrome extension to highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device.",
"repository": "github:jeromepl/highlighter",
"main": "manifest.json",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.56.1",
"archiver": "^5.3.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"readline-sync": "^1.4.10",
"replace-in-file": "^6.2.0"
},
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "node scripts/release.js",
"test": "playwright test",
"test:debug": "playwright test --ui --headed"
}
}