-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 867 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
{
"name": "pihole-blocklist-generator",
"version": "0.0.1",
"description": "",
"main": "pihole-blocklist-generator.js",
"scripts": {
"eslint": "./node_modules/eslint/bin/eslint.js --fix",
"prettier-check-for-unformatted": "./node_modules/prettier/bin-prettier.js --check .",
"prettier-overwrite": "./node_modules/prettier/bin-prettier.js --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithbentrup/pihole-blocklist-generator.git"
},
"bugs": {
"url": "https://github.com/keithbentrup/pihole-blocklist-generator/issues"
},
"homepage": "https://github.com/keithbentrup/pihole-blocklist-generator#readme",
"devDependencies": {
"eslint": "^8.20.0",
"prettier": "^2.7.1"
},
"dependencies": {
"node-fetch": "^2.6.7"
}
}