-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
66 lines (66 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "modesl",
"version": "2.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "FreeSWITCH ESL Node.js Implementation",
"author": "Chad Engler <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/englercj/node-esl",
"bugs": "https://github.com/englercj/node-esl/issues",
"repository": {
"type": "git",
"url": "https://github.com/englercj/node-esl.git"
},
"keywords": [
"freeswitch",
"fsw",
"esl",
"event socket",
"event socket library"
],
"files": [
"dist/",
"src/",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput -p tsconfig.json",
"test": "mocha -r ts-node/register test/spec/*.test.ts test/spec/**/*.test.ts",
"docs": "typedoc ./src",
"prepublishOnly": "npm run build",
"postpublish": "npm run deploy",
"predeploy": "rimraf ./docs && npm run docs && touch ./docs/.nojekyll",
"deploy": "gh-pages --dotfiles -d docs"
},
"dependencies": {
"eventemitter2": "^6.4.4",
"uuid": "^8.3.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.2",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"@types/uuid": "^8.3.1",
"@types/xml2js": "^0.4.9",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"gh-pages": "^3.2.3",
"mocha": "^9.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.2.1",
"typedoc": "^0.15.8",
"typedoc-md-theme": "^1.0.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=8.x"
}
}