-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "ari-client",
"version": "2.2.0",
"description": "JavaScript client for Asterisk REST Interface.",
"homepage": "https://github.com/asterisk/node-ari-client",
"keywords": [
"Asterisk",
"ARI"
],
"main": "./lib/client.js",
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha",
"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": "^3.5.2",
"lodash": "^4.17.10",
"request": "^2.34.0",
"swagger-client": "2.0.26",
"uuid": "^3.0.0",
"ws": "^6.0.0"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"async": "^2.6.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-jsdoc": "^2.1.0",
"hock": "^1.3.1",
"env-test": "^1.0.0",
"jshint": "^2.9.2",
"mocha": "^5.2.0",
"moment": "^2.6.0",
"mustache": "^2.2.1",
"nyc": "^15.0.0",
"portfinder": "^1.0.6"
}
}