forked from ghostery/adblocker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "@cliqz/adblocker",
"version": "0.4.2",
"description": "Cliqz adblocker library",
"repository": {
"type": "git",
"url": "git@github.com:cliqz-oss/adblocker.git"
},
"author": "Cliqz",
"license": "MPL-2.0",
"browser": "dist/adblocker.umd.js",
"main": "dist/adblocker.cjs.js",
"module": "dist/adblocker.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"index.ts",
"src"
],
"scripts": {
"clean": "rm -rfv dist",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "tsc -p tsconfig.json",
"bundle": "rollup -c rollup.config.js",
"minify": "google-closure-compiler --js=./dist/adblocker.umd.js --js_output_file=./dist/adblocker.umd.min.js && google-closure-compiler --js=./dist/adblocker-cosmetics.umd.js --js_output_file=./dist/adblocker-cosmetics.umd.min.js",
"prebuild": "npm run clean",
"prebundle": "npm run build",
"preminify": "npm run bundle",
"prepack": "npm run minify",
"pretest": "npm run lint",
"test": "jest --coverage --no-cache ./test/",
"dev": "jest --watch ./test/"
},
"devDependencies": {
"@types/chrome": "^0.0.73",
"@types/jest": "^23.3.2",
"@types/jsdom": "^11.12.0",
"@types/node": "^10.10.1",
"benchmark": "^2.1.4",
"chalk": "^2.4.1",
"concurrently": "^4.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"google-closure-compiler": "^20181008.0.0",
"jest": "^23.6.0",
"jsdom": "^11.12.0",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"dependencies": {
"punycode": "^2.1.1",
"tldts": "^3.1.2",
"tslib": "^1.9.3"
}
}