-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
68 lines (68 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-epp",
"version": "1.2.5",
"description": "EPP client for domain registrars.",
"main": "index.js",
"bin": {
"node-epp-rest": "./lib/node-epp-server.js",
"node-epp-rabbit": "./lib/rabbit-epp.js"
},
"scripts": {
"test": "mocha test/*.js",
"start": "node-epp-rest",
"checkVersion": "mocha --version",
"beautify": "esformatter -i 'lib/**/*.js' 'test/**/*.js'"
},
"author": "Trav Holton",
"license": "MIT",
"dependencies": {
"amqp": "*",
"amqp-as-promised": "*",
"body-parser": "*",
"crypto": "*",
"daemon": "*",
"data2xml": "*",
"express": "*",
"express-ipfilter": "*",
"forever": "*",
"forever-monitor": "*",
"ipfilter": "*",
"moment": "*",
"nano": "*",
"nconf": "*",
"node-expat": "*",
"raven": "^1.1.4",
"restify": "^4.3.0",
"uuid": "^3.0.0",
"winston": "*",
"winston-logzio": "^1.0.3",
"xml2json": "*",
"yargs": "*"
},
"devDependencies": {
"chai": "*",
"chai-as-promised": "*",
"chai-spies": "*",
"jack": "*",
"mocha": "*",
"resumer": "*",
"sinon": "*",
"sinon-chai": "*"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/heytrav/nodepp.git"
},
"keywords": [
"EPP",
"registry",
"tld"
],
"bugs": {
"url": "https://github.com/heytrav/nodepp/issues"
},
"homepage": "https://github.com/heytrav/nodepp"
}