forked from asterisk/node-ari-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "ari-client",
"version": "0.1.5",
"description": "JavaScript client for Asterisk REST Interface.",
"homepage": "https://github.com/asterisk/node-ari-client",
"keywords": [
"Asterisk",
"ARI"
],
"main": "./lib/client.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git://github.com/asterisk/node-ari-client"
},
"bugs": {
"url": "https://issues.asterisk.org",
"email": "asterisk-app-dev@lists.digium.com"
},
"license": "Apache-2.0",
"author": "Samuel Fortier-Galarneau",
"dependencies": {
"swagger-client": "^2.0.26",
"ws": "^0.4.31",
"underscore": "^1.6.0",
"node-uuid": "^1.4.1"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"mocha": "^1.17.1",
"grunt": "^0.4.4",
"grunt-mocha-test": "^0.10.0",
"grunt-contrib-jshint": "^0.10.0",
"mustache": "^0.8.1",
"grunt-jsdoc": "^0.5.4",
"moment": "^2.6.0",
"hock": "^0.2.5",
"request": "^2.34.0",
"async": "^0.8.0"
}
}