forked from NumminorihSF/ami-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 928 Bytes
/
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
{
"author": "Konstantine Petryaev <[email protected]>",
"name": "ami-io",
"description": "Asterisk Manager Interface client.",
"version": "0.2.11",
"keywords": [
"asterisk",
"manager",
"interface",
"node",
"iojs",
"ami"
],
"repository": {
"type": "git",
"url": "git://github.com/NumminorihSF/ami-io.git"
},
"scripts": {
"test": "node_modules/.bin/_mocha --recursive",
"coveralls": "npm install istanbul && node --version && node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- test --recursive -R spec && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js && rm -rf coverage",
"coverage": "istanbul cover node_modules/.bin/_mocha -- --recursive",
"postcoverage": "istanbul report"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
}
}