-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.03 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.03 KB
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
{
"name": "noscript-tag-blocker",
"private": true,
"version": "1.3",
"description": "Firefox WebExtension for blocking <noscript> tags",
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "yarn lint --fix",
"build": "cp ./node_modules/webextension-polyfill/dist/browser-polyfill.js noscript-tag-blocker/browser-polyfill.js && web-ext build --source-dir=./noscript-tag-blocker/ --overwrite-dest --artifacts-dir=./noscript-tag-blocker/dist",
"test": "web-ext run --source-dir=./noscript-tag-blocker/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggabarrin/noscript-tag-blocker.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ggabarrin/noscript-tag-blocker/issues"
},
"homepage": "https://github.com/ggabarrin/noscript-tag-blocker#readme",
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.0.5",
"web-ext": "^6.4.0",
"webextension-polyfill": "^0.8.0"
}
}