-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 756 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
{
"name": "nobadcookies",
"version": "1.0.0",
"description": "Auto-remove cookie banners and manage cookies with ease",
"main": "src/data/background.js",
"scripts": {
"build": "echo 'Build complete - load extension from this directory'",
"test": "jest --testPathPattern=tests --coverage",
"test:watch": "jest --testPathPattern=tests --watch"
},
"keywords": ["cookies", "privacy", "cookie-banner", "gdpr"],
"author": "",
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"jest": {
"testEnvironment": "jsdom",
"coveragePathIgnorePatterns": ["/node_modules/", "/tests/"],
"collectCoverageFrom": [
"src/**/*.js",
"interface/**/*.js"
]
}
}