-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@dnslink/test",
"version": "0.11.1",
"description": "A programming-language independent test harness for DNSLink implementations.",
"main": "index.js",
"types": "types",
"bin": {
"dnslink-test": "./bin/dnslink-test"
},
"scripts": {
"lint": "standard *.js bin/* && dtslint --localTs node_modules/typescript/lib types",
"test": "node bin/dnslink-test -- node test.js && node bin/dnslink-test --enable=log -- node test.js"
},
"standard": {
"ignore": "*.ts",
"include": "bin/dnslink-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnslink-std/test.git"
},
"keywords": [
"dnslink",
"test",
"standard"
],
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/dnslink-std/test/issues"
},
"homepage": "https://github.com/dnslink-std/test#readme",
"dependencies": {
"abort-controller": "^3.0.0",
"dns2": "^2.0.1",
"fast-deep-equal": "^3.1.3",
"fresh-tape": "^5.2.4",
"which": "^2.0.2"
},
"devDependencies": {
"dtslint": "^4.1.2",
"p-map": "^5.0.0",
"standard": "^16.0.3",
"typescript": "^4.3.5"
}
}