-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 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
67
68
69
70
71
72
73
74
75
76
{
"name": "sipp-js",
"description": "Wrapper library for SIPp",
"version": "0.1.3",
"homepage": "https://github.com/fonoster/sipp-js#readme",
"author": "Pedro Sanders",
"license": "MIT",
"main": "dist/src/index.js",
"scripts": {
"start": "node dist/sipp.js",
"test": "cross-env NODE_ENV=dev nyc --reporter=lcov mocha test/*.test.ts --exit",
"prebuild": "rimraf ./dist tsconfig.tsbuildinfo",
"build": "tsc -b tsconfig.json",
"gen:docs": "node .scripts/docs-generator.js && cp docs/SIPP.md README.md",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"prepare": "husky install"
},
"dependencies": {
"sleep": "^6.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.35",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@types/sleep": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^3.3.1",
"esm": "^3.2.25",
"husky": "^8.0.1",
"jsdoc-to-markdown": "^7.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^10.7.0",
"typescript": "^4.1.5"
},
"bugs": {
"url": "https://github.com/fonoster/sipp-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fonoster/sipp-js.git"
},
"keywords": [
"SIP",
"Tests",
"Signaling",
"SIPP",
"RTC",
"WebRTC",
"VoIP"
],
"directories": {
"src": "src",
"test": "test"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}