-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.27 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
{
"name": "no-direct-ip",
"version": "0.3.0",
"description": "Block directly entered, external or public IP v4 and v6 addresses",
"scripts": {
"test": "jest",
"lint": "eslint background/ resources/",
"fix": "eslint --fix background/ resources/",
"pack-v2": "node ./build/prebuild.js -v2 && npm-pack-zip --ver --src build/v2/ --dst build/v2/ && node ./build/postbuild.js -v2",
"pack-v3": "node ./build/prebuild.js -v3 && npm-pack-zip --ver --src build/v3/ --dst build/v3/ && node ./build/postbuild.js -v3",
"build": "npm run pack-v2 && npm run pack-v3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OllieJC/no-direct-ip.git"
},
"author": "OllieJC",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/OllieJC/no-direct-ip/issues"
},
"homepage": "https://github.com/OllieJC/no-direct-ip#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"fs-extra": "^10.0.1",
"jest": "^27.5.1",
"npm-pack-zip": "github:OllieJC/npm-pack-zip#master"
}
}