-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.53 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
47
48
49
50
51
{
"name": "dns-over-tls",
"version": "0.0.9",
"description": "dns-over-tls for node",
"author": "Sagi Kedmi <[email protected]> (https://sagi.io)",
"homepage": "https://sagi.io",
"license": "MIT",
"private": false,
"main": "./lib/index.js",
"types": "./lib/index.d.js",
"scripts": {
"start": "node lib/index.js",
"start:example": "ts-node example/index.ts",
"build": "tsc && tsc -d",
"test": "jest dnstls.test.ts",
"system:test": "jest index.system.test.ts",
"coverage": "jest --coverage dnstls.test.ts",
"system:coverage": "jest --coverage index.system.test.ts",
"tslint": "tslint ./src/**/*.ts",
"prettier:base": "prettier",
"prettier:check": "yarn run prettier:base --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "yarn run prettier:base --write \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"dns-packet": "^5.2.1"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.2",
"coveralls": "^3.0.5",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:write && yarn build && git add lib/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sagi/node-dns-over-tls.git"
},
"keywords": ["dns-over-tls", "dns over tls", "dns", "tls", "dnstls", "security", "privacy"]
}