-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"name": "tab-exporter",
"version": "1.0.3",
"description": "Firefox extension to export tabs in multiple formats",
"private": true,
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "web-ext build --source-dir . --artifacts-dir dist --overwrite-dest",
"sign": "web-ext sign --source-dir . --artifacts-dir dist",
"dev": "web-ext run --source-dir ."
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0",
"web-ext": "^8.0.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": ["./tests/mocks/browser.mock.js"],
"testMatch": ["**/tests/**/*.test.js"],
"collectCoverageFrom": [
"core/**/*.js",
"formatters/**/*.js",
"utils/**/*.js"
],
"transform": {}
}
}