-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "droplinks",
"version": "1.0.0",
"description": "Responsive drag-and-drop link organizer",
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest tests/unit/",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:performance": "playwright test --config=playwright.extended.config.js --grep=\"Performance Tests\"",
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:cross-browser": "playwright test --project=chromium --project=firefox --project=webkit",
"test:ci": "npm run test:unit && npm run test:cross-browser && npm run test:performance",
"test:watch": "jest --watch tests/unit/",
"test:coverage": "jest --coverage tests/unit/",
"lint": "eslint droplinks.html --ext .html",
"lint:fix": "eslint droplinks.html --ext .html --fix",
"lighthouse": "lhci autorun",
"report": "playwright show-report",
"install-browsers": "playwright install",
"prepare": "husky install",
"pre-commit": "pre-commit run --all-files"
},
"devDependencies": {
"@lhci/cli": "^0.15.0",
"@playwright/test": "^1.40.0",
"chrome-launcher": "^1.1.0",
"eslint": "^8.0.0",
"eslint-plugin-html": "^7.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0",
"jsdom": "^23.0.0",
"lighthouse": "^12.6.1",
"pre-commit": "^1.0.10",
"prettier": "^3.1.0"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"**/*.{js,html}",
"!**/node_modules/**",
"!**/tests/**"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup/jest.setup.js"
]
},
"keywords": [
"bookmarks",
"links",
"organizer",
"drag-drop",
"responsive"
],
"author": "Your Name",
"license": "MIT"
}