-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
72 lines (72 loc) · 2.7 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
{
"name": "popup-blocker",
"version": "2.5.98",
"description": "Block popups preemptively by wrapping browser APIs for additional check",
"scripts": {
"userscript-dev": "cross-env NODE_ENV=dev ts-node tasks/builder --target=userscript",
"userscript-beta": "cross-env NODE_ENV=beta ts-node tasks/builder --target=userscript",
"userscript-release": "cross-env NODE_ENV=release ts-node tasks/builder --target=userscript",
"bundle:dev": "cross-env NODE_ENV=dev ts-node tasks/builder --target=bundle",
"bundle:beta": "cross-env NODE_ENV=beta ts-node tasks/builder --target=bundle",
"bundle:release": "cross-env NODE_ENV=release ts-node tasks/builder --target=bundle",
"options-page": "ts-node tasks/builder --target=options",
"tests": "ts-node tasks/builder --target=tests",
"lint": "eslint .",
"locales:download": "ts-node locales.ts download",
"locales:upload": "ts-node locales.ts upload",
"update-tinyshield-websites": "ts-node tasks/updateTinyShieldWebsites.ts",
"increment": "yarn version --patch --no-git-tag-version"
},
"repository": "https://github.com/AdguardTeam/PopupBlocker",
"license": "LGPL-3.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/chai": "^4.3.4",
"@types/filesystem": "^0.0.32",
"@types/jest": "^29.4.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.0",
"@types/tampermonkey": "^4.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"axios": "^1.3.4",
"chai": "^4.1.2",
"chalk": "^4.1.2",
"commander": "^10.0.0",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-newlines": "^1.3.1",
"eslint-plugin-jsdoc": "^50.6.0",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"mocha": "^4.0.1",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-inline-svg": "^6.0.0",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.0",
"postcss-preset-env": "^8.0.1",
"postcss-svgo": "^5.1.0",
"rollup": "^3.12.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@adguard/translate": "^0.3.0",
"preact": "^10.13.0",
"tslib": "^2.5.0"
}
}