-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.22 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
44
45
46
{
"private": true,
"name": "@serverless-dns/trie",
"version": "0.0.15",
"license": "MPL-2.0",
"description": "A compact zero-copy trie, used by serverless-dns",
"main": "./src/trie.js",
"type": "module",
"exports": {
".": "./src/trie.js",
"./ftrie.js": "./src/ftrie.js",
"./stamp.js": "./src/stamp.js"
},
"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/trie.git"
},
"author": "",
"bugs": {
"url": "https://github.com/serverless-dns/trie/issues"
},
"homepage": "https://github.com/serverless-dns/trie#readme",
"dependencies": {
"@serverless-dns/lfu-cache": "github:serverless-dns/lfu-cache#v3.5.2"
},
"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"
}
}