-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"author": "Konstantine Petryaev <[email protected]>",
"name": "ami-io",
"description": "Asterisk Manager Interface client.",
"version": "1.2.1",
"keywords": [
"asterisk",
"manager",
"interface",
"node",
"iojs",
"ami"
],
"repository": {
"type": "git",
"url": "git://github.com/NumminorihSF/ami-io.git"
},
"scripts": {
"lint": "eslint -c .eslintrc.yml ./index.js \"./lib/**/*.js\"",
"lint:fix": "eslint -c .eslintrc.yml ./index.js \"./lib/**/*.js\" --fix",
"test": "nyc mocha --recursive",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"main": "index.js",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "3.1.1",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "9.1.3",
"nyc": "15.1.0",
"prettier": "^2.1.2"
},
"engineStrict": true,
"engines": {
"node": ">=8.0"
},
"dependencies": {}
}