forked from asterisk/node-ari-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "ari-client",
"version": "1.1.0",
"description": "JavaScript client for Asterisk REST Interface.",
"homepage": "https://github.com/asterisk/node-ari-client",
"keywords": [
"Asterisk",
"ARI"
],
"main": "./lib/client.js",
"scripts": {
"test": "npm run lint && mocha",
"cover": "istanbul cover --report html _mocha",
"check-coverage": "npm run cover && istanbul check-coverage --lines 75 --statements 75 --functions 75 --branches 70",
"lint": "jshint . --verbose"
},
"repository": {
"type": "git",
"url": "git://github.com/asterisk/node-ari-client"
},
"bugs": {
"url": "https://issues.asterisk.org",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": "Samuel Fortier-Galarneau",
"dependencies": {
"backoff-func": "^0.1.2",
"bluebird": "^2.9.34",
"swagger-client": "2.0.26",
"underscore": "^1.6.0",
"uuid": "^3.0.0",
"ws": "^1.1.1"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"async": "^2.0.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-jsdoc": "^2.1.0",
"hock": "^1.3.1",
"env-test": "^1.0.0",
"istanbul": "^0.4.4",
"jshint": "^2.9.2",
"mocha": "^3.0.2",
"moment": "^2.6.0",
"mustache": "^2.2.1",
"portfinder": "^1.0.6",
"request": "^2.34.0"
}
}