-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
45
46
47
48
49
50
{
"name": "adonis-asterisk-ami",
"version": "0.2.0",
"description": "Asterisk AMI client for adonis framework",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"precommit": "lint-staged",
"prepush": "lint-staged"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"author": "Evgeny Razumov (enniel)",
"license": "MIT",
"dependencies": {
"asterisk-ami-client": "^1.0.5",
"lodash": "^4.17.4",
"node-pdu": "^1.0.11"
},
"devDependencies": {
"@adonisjs/ace": "^4.0.4",
"@adonisjs/fold": "^4.0.2",
"@adonisjs/framework": "^4.0.6",
"dotenv": "^4.0.0",
"husky": "^0.13.4",
"lint-staged": "^4.0.0",
"standard": "^10.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enniel/adonis-asterisk-ami.git"
},
"keywords": [
"asterisk",
"ami",
"adonis"
],
"bugs": {
"url": "https://github.com/enniel/adonis-asterisk-ami/issues"
},
"homepage": "https://github.com/enniel/adonis-asterisk-ami#readme"
}