-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "js-anti-adblock",
"description": "A simple and lightweight script for detect Adblock",
"version": "1.2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/The-3Labs-Team/js-anti-adblock.git"
},
"keywords": [
"antiadblock",
"adblock"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/The-3Labs-Team/js-anti-adblock/issues"
},
"homepage": "https://github.com/The-3Labs-Team/js-anti-adblock#readme",
"scripts": {
"minify": "uglifyjs resources/antiAdBlocker.js -o dist/antiAdBlocker.min.js -c -m",
"obfuscate": "javascript-obfuscator dist/antiAdBlocker.min.js --output dist/antiAdBlocker.min.ob.js",
"build": "npm run minify && npm run obfuscate",
"start": "http-server -p 8080",
"lint": "eslint resources/**",
"lint:fix": "eslint resources/** --fix"
},
"devDependencies": {
"http-server": "^14.1.1",
"eslint": "^8.47.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"javascript-obfuscator": "^4.0.2",
"uglify-js": "^3.17.4"
}
}