-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "drachtio-sip-sample",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"module": "./lib/index.js",
"files": [
"lib/"
],
"scripts": {
"start": "NODE_PATH=dist/ node dist/index.js",
"prebuild": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"server": "tsc && NODE_PATH=dist/ node dist/index.js",
"libbuild": "rm -rf lib && tsc -p tsconfig.module.json",
"lint": "eslint --ext .ts .",
"lintfix": "eslint --fix --ext .ts .",
"test": "npm run unit-test && npm run integration-test",
"unit-test": "NODE_PATH=dist/ mocha \"dist/test/**/*.test.js\"",
"integration-test": "NODE_PATH=dist/ mocha \"dist/test/**/*.spec.js\""
},
"author": "shadow-walker811",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"typescript": "^5.5.3"
},
"dependencies": {
"dotenv": "^16.4.5",
"drachtio-srf": "^4.5.39",
"rtpengine-client": "^0.4.12"
}
}