-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.68 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
{
"name": "youtube-local-history",
"version": "2.4.0",
"description": "Store YouTube video timestamps using secure browser storage for larger storage capacity without expiry.",
"main": "src/content.js",
"scripts": {
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:memory": "jest --testPathPattern=memory",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build:e2e": "bash scripts/build-chrome-unpacked.sh",
"build:e2e:chrome": "bash scripts/build-chrome-unpacked.sh",
"build:e2e:firefox": "bash scripts/build-firefox-unpacked.sh",
"test:e2e": "npm run test:e2e:live && npm run test:e2e:static",
"test:e2e:live": "playwright test --project=chromium-extension",
"test:e2e:static": "playwright test --project=chromium-extension-static",
"test:e2e:all": "playwright test",
"test:e2e:ui": "playwright test --project=chromium-extension --ui",
"fixtures:youtube:download": "node scripts/download-youtube-fixtures.js",
"test:firefox": "npm run test:firefox:lint",
"test:firefox:lint": "npm run build:e2e:firefox && NO_UPDATE_NOTIFIER=1 web-ext lint --source-dir build/e2e/firefox --warnings-as-errors --no-input --no-config-discovery",
"test:firefox:smoke": "npm run build:e2e:firefox && node tests/firefox/extension-smoke.firefox.test.js",
"test:firefox:overlays": "npm run build:e2e:firefox && node tests/firefox/core-overlays.firefox.test.js",
"test:firefox:static": "npm run build:e2e:firefox && node tests/firefox/static-overlays.firefox.test.js",
"test:firefox:rick": "npm run build:e2e:firefox && node tests/firefox/core-resume.firefox.test.js",
"test:firefox:e2e": "npm run test:firefox:smoke && npm run test:firefox:overlays && npm run test:firefox:static && npm run test:firefox:rick",
"test:firefox:all": "npm run test:firefox:lint && npm run test:firefox:e2e",
"firefox:run": "npm run build:e2e:firefox && bash scripts/run-firefox-extension.sh",
"build": "./build.sh",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"keywords": [
"youtube",
"history",
"extension",
"browser",
"video",
"tracking"
],
"author": "Edin User",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@playwright/test": "^1.56.1",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"selenium-webdriver": "^4.46.0",
"web-ext": "^10.5.0"
},
"browserslist": [
"last 2 versions",
"not dead"
]
}