-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
67 lines (67 loc) · 2.36 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
{
"name": "@duckduckgo/autoconsent",
"version": "10.14.0",
"description": "",
"main": "dist/autoconsent.cjs.js",
"module": "dist/autoconsent.esm.js",
"directories": {
"lib": "lib"
},
"scripts": {
"clean": "rm -r dist",
"lint": "eslint addon/ lib/ playwright/ tests/ rules/autoconsent/*.json",
"bundle": "./build.sh",
"watch": "npm run prepublish && chokidar \"lib\" \"addon\" \"rules/autoconsent\" -c \"npm run prepublish\"",
"create-rule": "node rules/create-rule.mjs",
"test": "playwright test",
"test:webkit": "playwright test --project webkit",
"test:firefox": "playwright test --project firefox",
"test:chrome": "playwright test --project chrome",
"test:lib": "playwright test tests/dom-actions.spec.ts",
"test:sample": "playwright test tests/_sample-test.spec.ts --project webkit",
"fetch-fanboy-list": "wget https://www.fanboy.co.nz/fanboy-cookiemonster.txt",
"fetch-site-list": "curl https://s3.amazonaws.com/cdn.cliqz.com/re-consent/supported_sites.txt > sites.txt",
"build-rules": "node rules/build.mjs",
"version": "node update_version.js && git add addon/manifest.*.json",
"vendor-copy": "mkdir -p addon/vendor && cp node_modules/mocha/mocha.* addon/vendor/ && cp node_modules/chai/chai.js addon/vendor/",
"prepublish": "npm run build-rules && npm run bundle",
"launch:firefox": "web-ext run -s dist/addon-firefox",
"release": "auto shipit",
"get-text-for-xpath": "ts-node scripts/get-text-for-xpath.ts"
},
"author": "Sam Macbeth",
"license": "MPL-2.0",
"devDependencies": {
"@playwright/test": "^1.17.1",
"@puppeteer/replay": "^3.0.0",
"@types/chai": "^4.3.1",
"@types/chrome": "^0.0.263",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"asana": "^1.0.2",
"auto": "^11.0.1",
"bulma": "^0.9.4",
"chai": "^5.0.0",
"chokidar-cli": "^3.0.0",
"esbuild": "^0.20.0",
"eslint": "^8.27.0",
"eslint-plugin-json": "^3.1.0",
"markdown-it": "^14.0.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.4.0",
"typescript": "^5.1.6",
"web-ext": "^7.3.0"
},
"repository": "duckduckgo/autoconsent",
"auto": {
"plugins": [
"npm"
],
"onlyPublishWithReleaseLabel": true
},
"dependencies": {
"tldts-experimental": "^6.1.37"
}
}