forked from node-diameter/node-diameter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "diameter",
"version": "0.9.5",
"description": "Diameter base protocol implementation",
"author": "Robert Kovacevic <[email protected]>",
"license": "GPL-3.0",
"main": "./lib/diameter",
"repository": {
"type": "git",
"url": "git://github.com/node-diameter/node-diameter.git"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"bluebird": "^2.9.34",
"chalk": "^1.0.0",
"diameter-dictionary": "^1.0.2",
"ipaddr.js": "^1.0.1",
"lodash": "^4.17.10",
"long": "^2.2.0",
"raw-socket": "^1.6.4",
"sctp": "0.0.15"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.1.0",
"istanbul": "^0.3.19",
"jasmine-node": "^1.14.5",
"proxyquire": "^1.8.0"
},
"scripts": {
"unit": "./node_modules/.bin/jasmine-node test",
"test": "./node_modules/.bin/istanbul cover --include-all-sources -i \"lib/*.js\" ./node_modules/.bin/jasmine-node test",
"postversion": "git push origin master --tags",
"example-server": "node examples/diameter-server-example.js",
"example-client": "node examples/diameter-client-example.js"
},
"keywords": [
"diameter",
"protocol",
"rfc6733",
"server",
"client"
]
}