-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
{
"name": "dupesweep-tests",
"version": "3.0.0",
"type": "module",
"description": "Unit tests for DupeSweep extension",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:url": "node docs/test_url_extraction.js",
"lint": "eslint extension/ tests/",
"lint:fix": "eslint extension/ tests/ --fix",
"format": "prettier --write extension/ tests/",
"format:check": "prettier --check extension/ tests/",
"quality": "npm run lint && npm run format:check && npm test"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^3.6.2"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"collectCoverageFrom": [
"extension/close_tabs.js",
"extension/options.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
},
"keywords": [
"chrome-extension",
"tabs",
"duplicates",
"testing",
"dupesweep"
],
"author": "DupeSweep Team",
"license": "MIT"
}