zone-file
Version:
A DNS zone file parser and generator
81 lines (80 loc) • 1.7 kB
JSON
{
"name": "zone-file",
"version": "1.0.0",
"description": "A DNS zone file parser and generator",
"main": "lib/index",
"scripts": {
"compile": "rm -rf lib; babel src -d lib",
"flow": "flow",
"prepublish": "npm run compile",
"lint": "eslint src",
"test": "npm run lint && npm run compile && npm run flow && node lib/testing/unitTests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blockstack/zone-file-js.git"
},
"author": "Blockstack Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/blockstack/zone-file-js/issues"
},
"keywords": [
"DNS",
"zone",
"zone file",
"zonefile",
"domain",
"domain name"
],
"contributors": [
{
"name": "Ryan Shea"
},
{
"name": "Aaron Blankstein"
},
{
"name": "Elgs Chen"
},
{
"name": "William Ferrell",
"email": "willfe@gmail.com"
},
{
"name": "Christoph Witzko",
"email": "github@christophwitzko.com"
},
{
"name": "Lance Hudson",
"email": "lance@lancehudson.com"
},
{
"name": "Rouven Weßling"
},
{
"name": "Sebastian Vollnhals"
},
{
"name": "Chris Flook"
},
{
"name": "Stephen Sawchuk",
"email": "sawchuk@gmail.com"
},
{
"name": "Mayo Jordanov"
}
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-plugin-flowtype": "^3.2.0",
"flow-bin": "^0.89.0",
"tape": "^4.5.1"
}
}