-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 KB
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
52
53
{
"name": "proxy-dns",
"version": "1.1.0",
"description": "dns proxy framework",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib src",
"watch": "npm run build -- --watch",
"check": "npm run lint && npm run test",
"clean": "rimraf lib coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run check",
"postversion": "git push && git push --tags && npm run clean",
"test": "nyc --require babel-core/register mocha",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RegulateDNS/proxy-dns.git"
},
"keywords": [
"dns",
"proxy"
],
"contributors": [
"Adam Snodgrass <overra@gmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/RegulateDNS/proxy-dns/issues"
},
"homepage": "https://github.com/RegulateDNS/proxy-dns#readme",
"dependencies": {
"co": "^4.5.4",
"koa-compose": "^2.3.0",
"native-dns": "^0.7.0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015-node4": "^2.0.2",
"babel-preset-stage-0": "^6.3.13",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"expect.js": "^0.3.1",
"mocha": "^2.2.5",
"nyc": "^5.3.0",
"rimraf": "^2.5.0"
}
}