forked from StephanGeorg/node-dig-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 972 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": "node-dig-dns",
"version": "0.2.9",
"description": "Use dig command for DNS queries in node",
"main": "./dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepare": "npm run build",
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StephanGeorg/node-dig-dns"
},
"author": "Stephan Georg <s.georg@nearest.place>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StephanGeorg/node-dig-dns.git"
},
"homepage": "https://github.com/StephanGeorg/node-dig-dns#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.11.6",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.0.1",
"chai": "^4.1.1"
},
"dependencies": {
"lodash.compact": "^3.0.1"
}
}