-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 827 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "saveit",
"version": "1.0.0",
"description": "Chrome extension to send URLs to a configured webhook",
"main": "src/background.js",
"type": "module",
"scripts": {
"test": "node_modules/.bin/vitest run",
"test:watch": "node_modules/.bin/vitest",
"lint": "eslint .",
"build": "echo 'No build step required'",
"docker:build": "docker-compose -f test_config/docker-compose.yml build",
"docker:test": "docker-compose -f test_config/docker-compose.yml run --rm test",
"docker:lint": "docker-compose -f test_config/docker-compose.yml run --rm lint",
"docker:coverage": "docker-compose -f test_config/docker-compose.yml run --rm coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.42.0",
"jsdom": "^23.0.0",
"vitest": "^2.0.0"
}
}