forked from yahoo/dnscache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 909 Bytes
/
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
{
"name": "dnscache",
"description": "dnscache for Node",
"author": "Vinit Sacheti <vsacheti@yahoo.com>",
"version": "1.0.0",
"keywords": [
"dnscache",
"dns"
],
"main": "./lib/index.js",
"scripts": {
"pretest": "jshint --config ./node_modules/yui-lint/jshint.json ./lib/ ./test/",
"test": "jenkins-mocha ./test/*.js",
"posttest": "istanbul check-coverage"
},
"bugs": {
"url": "http://github.com/yahoo/dnscache/issues"
},
"license": "BSD",
"repository": {
"type": "git",
"url": "http://github.com/yahoo/dnscache.git"
},
"devDependencies": {
"async": "~1.5.2",
"istanbul": "~0.4.3",
"jenkins-mocha": "~2.6.0",
"jshint": "~2.9.2",
"yui-lint": "~0.2.0"
},
"dependencies": {
"asap": "~2.0.3",
"lodash.clone": "~4.3.2"
}
}