-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "ts-agi",
"description": "Write AGI-server quickly! (AGI - Asterisk Gateway Interface)",
"author": "Sergey Razuvaev <[email protected]>",
"version": "0.0.25",
"main": "lib/agi.js",
"repository": {
"type": "git",
"url": "git://github.com/sergey12313/ts-agi"
},
"types": "lib/agi.d.ts",
"license": "MIT",
"files": [
"lib/**/*"
],
"keywords": [
"asterisk",
"agi",
"fastagi",
"*"
],
"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"
}
}