-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
79 lines (79 loc) · 2.99 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@duckduckgo/autofill",
"main": "dist/autofill.js",
"browserslist": [
"defaults",
"not dead",
"not ie 11"
],
"scripts": {
"postinstall": "cd packages/password && npm install",
"start": "grunt dev",
"build": "grunt",
"build:translations": "node scripts/bundle-locales.mjs",
"lint": "eslint . && prettier . --check",
"lint:fix": "eslint . --fix && prettier . --write",
"copy-assets": "node scripts/copy-assets.js",
"precompile-regexes": "node scripts/precompile-regexes.js",
"open-test-extension": "npx web-ext run -t chromium -u https://privacy-test-pages.site/ -s integration-test/extension",
"schema:generate": "node scripts/api-call-generator.js",
"test": "npm run test:unit && npm run lint && tsc",
"test:clean-tree": "npm run build && sh scripts/check-for-changes.sh",
"test:passwords": "PASSWORD_STRESS_TEST=true jest generate.test.js",
"test:unit": "jest",
"test:integration": "npm run build && npm run copy-assets && playwright test",
"test:integration:fast": "playwright test --timeout 10000 --workers 8",
"test:integration:showui": "npm run test:integration -- --headed",
"test:integration:fast:showui": "npm run test:integration:fast -- --headed",
"test:integration:ci": "xvfb-run --auto-servernum npm run test:integration",
"test:report": "jest --testResultsProcessor='./node_modules/jest-html-reporter' --no-colors --verbose=false",
"test:watch": "jest --watch --verbose=false",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"verify:local": "npm run lint:fix && npm run tsc && npm run test:unit && npm run test:integration",
"serve": "http-server -c-1 --port 3210 ./"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.22.20",
"@duckduckgo/content-scope-scripts": "github:duckduckgo/content-scope-scripts#1.3.0",
"@duckduckgo/eslint-config": "github:duckduckgo/eslint-config#v0.1.0",
"@duckduckgo/privacy-test-pages": "github:duckduckgo/privacy-test-pages#1.3.1",
"@playwright/test": "^1.41.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.17.19",
"asana": "^1.0.2",
"babel-jest": "^29.7.0",
"babelify": "^10.0.0",
"eslint": "^9.13.0",
"fast-check": "^2.25.0",
"globals": "^15.11.0",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.3.0",
"grunt-exec": "^3.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"json-schema-to-typescript": "^13.1.2",
"load-grunt-tasks": "^5.1.0",
"markdown-it": "^13.0.2",
"playwright": "^1.41.1",
"prettier": "3.3.3",
"through2": "^4.0.2",
"ts-to-zod": "^3.14.0",
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"overrides": {
"jest-chrome": {
"jest": "$jest"
}
}
}