-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 967 Bytes
/
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
{
"name": "userscripts-ads-dom-remover",
"version": "1.0.0",
"description": "Removes Ad Containers from DOM",
"author": {
"name": "Sagie Gur-Ari",
"email": "sagiegurari@gmail.com"
},
"license": "MIT",
"private": true,
"homepage": "https://github.com/sagiegurari/userscripts-ads-dom-remover",
"repository": {
"type": "git",
"url": "git+https://github.com/sagiegurari/userscripts-ads-dom-remover.git"
},
"bugs": {
"url": "http://github.com/sagiegurari/userscripts-ads-dom-remover/issues"
},
"main": "ads-dom-remover.js",
"scripts": {
"format": "js-beautify --config ./.jsbeautifyrc --file ./*.js ./__tests__/**/*.js",
"lint": "eslint ./*.js ./__tests__/**/*.js",
"jstest": "jest",
"test": "npm run format && npm run lint && npm run jstest"
},
"devDependencies": {
"eslint": "^8",
"jest": "^27",
"jquery": "^3",
"js-beautify": "^1"
},
"jest": {
"testEnvironment": "jsdom"
}
}