-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "touched-agi",
"version": "0.0.18",
"description": "A fork and modified version of ts-agi which will see if the Asterisk channel is still open, or if the caller dropped the call. This will resolve Auto-Destruct issue on ts-agi.",
"main": "dist/agi.js",
"homepage": "https://github.com/Ouri028/touched-agi",
"bugs": {
"url": "https://github.com/Ouri028/touched-agi/issues",
"email": "[email protected]"
},
"keywords": [
"asterisk",
"agi",
"typescript",
"fastagi"
],
"types": "lib/agi.d.ts",
"files": [
"dist/**/*"
],
"author": "Sylvester Stephenson",
"license": "ISC",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest --detectOpenHandles --config jestconfig.json ",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {
"memorystream": "^0.3.1",
"@types/memorystream": "^0.3.0",
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
}
}