forked from englercj/node-esl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1001 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1001 Bytes
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
{
"name": "modesl",
"version": "1.1.8",
"description": "FreeSWITCH ESL Node.js Implementation",
"author": "Chad Engler <chad@pantherdev.com>",
"keywords": [
"freeswitch",
"api",
"wrapper",
"esl",
"event",
"socket",
"library"
],
"homepage": "https://github.com/englercj/node-esl",
"bugs": "https://github.com/englercj/node-esl/issues",
"repository": {
"type": "git",
"url": "https://github.com/englercj/node-esl.git"
},
"main": "lib/index",
"dependencies": {
"eventemitter2": "~0.4",
"xml2js": "~0.4",
"node-uuid": "~1.4"
},
"devDependencies": {
"grunt": "~0.4",
"grunt-contrib-jshint": "~0.12",
"grunt-mocha-cov": "~0.4",
"mocha-term-cov-reporter": "~0.2",
"chai": "~1.9",
"sinon": "~1.9",
"sinon-chai": "~2.5"
},
"scripts": {
"test": "grunt test"
},
"engines": {
"node": ">= 0.8.2"
},
"config": {
"blanket": {
"pattern": [
"node-esl/lib"
]
}
}
}