Files
ClearUrls/package.json
2020-11-08 23:32:31 +01:00

66 lines
2.1 KiB
JSON

{
"name": "clearurls",
"version": "2.0.0",
"description": "Remove tracking elements from URLs",
"main": "background/main.js",
"dependencies": {
"webext-options-sync": "^1.2.3",
"webextension-polyfill-ts": "^0.19.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/firefox-webext-browser": "^78.0.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"copy-webpack-plugin": "^6.0.3",
"dot-json": "^1.2.0",
"jest": "^26.4.0",
"jest-junit": "^11.1.0",
"mockzilla-webextension": "^0.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"size-plugin": "^2.0.1",
"terser-webpack-plugin": "^4.1.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"lint": "tslint -t codeFrame -c tslint.json 'source/**/*.{ts,tsx,js}' 'tests/**/*.{ts,tsx,js}'",
"test": "jest --coverage",
"test:ci": "jest --ci --coverage --testResultsProcessor=\"jest-junit\"",
"test:prod": "run-s test lint build",
"clean": "rimraf distribution",
"build": "run-s clean && webpack --mode=production",
"watch": "webpack --mode=development --watch",
"version": "dot-json manifest.json version $VER"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:KevinRoebert/ClearUrls.git"
},
"keywords": [
"tracking-protection",
"webextension",
"plugin",
"opensource",
"firefox addon",
"chrome addon",
"edge addon",
"browser extension",
"extension"
],
"author": "Kevin Röbert",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/KevinRoebert/ClearUrls/issues"
},
"homepage": "https://clearurls.xyz"
}