-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
43 lines (43 loc) · 1.15 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
39
40
41
42
43
{
"private": true,
"name": "blocklists",
"version": "0.1",
"license": "MPL-2.0",
"description": "An opinionated collection of blocklists for RethinkDNS.",
"main": "./src/build.js",
"type": "module",
"scripts": {
"clean": "npm run clean",
"clean:node": "rm -rf node_modules/ package-lock.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-dns/blocklists.git"
},
"author": "",
"bugs": {
"url": "https://github.com/serverless-dns/blocklists/issues"
},
"homepage": "https://github.com/serverless-dns/blocklists#readme",
"dependencies": {
"aws-sdk": "^2.1233.0",
"trie": "github:serverless-dns/trie#v0.0.14"
},
"devDependencies": {
"@types/node": "^16.11.7",
"clinic": "^11.1.0",
"eslint": "^8.5.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
},
"eslintIgnore": ["src/build.js"]
}