forked from netkicorp/dnssecjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.08 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": "dnssec",
"version": "0.0.1",
"authors": [
"Netki Opensource <[email protected]>"
],
"license" : "BSD-3-Clause",
"description": "DNSSEC Validating Resolver",
"keywords": [
"dns",
"dnssec",
"rrsig",
"dnskey",
"secure"
],
"homepage": "https://netki.com",
"bugs": {
"url": ""
},
"repository": {
"type": "git",
"url": "https://github.com/netkicorp/dnssecjs"
},
"main": "index.js",
"engines": {
"node": ">= 0.5.0"
},
"scripts": {
"test": "nodeunit test"
},
"dependencies": {
"base32.js": "^0.1.0",
"biginteger.js": "^1.0.1",
"binstring": "^0.2.1",
"buffercursor": "0.0.12",
"jsrsasign": "^5.0.5",
"native-dns-packet": "netkicorp/native-dns-packet#0.1.2",
"string": "^3.3.1"
},
"devDependencies": {
"browserify": "~13.1.1",
"optimist": "",
"nodeunit": ">= 0.7.4",
"grunt": "~0.4.2",
"grunt-browserify": "~5.0.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~2.0.0",
"grunt-contrib-watch": "~1.0.0"
}
}