-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.05 KB
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": "msrp-node-lib",
"title": "msrp-node-lib",
"description": "A complete MSRP (Message Session Relay Protocol) library for Node.js applications, supporting RFC 4975 message relay protocol with SDP integration",
"version": "0.2.0",
"license": "MIT",
"author": {
"email": "cwysong85@gmail.com",
"name": "Corey Wysong"
},
"repository": {
"type": "git",
"url": "https://github.com/cwysong85/msrp-node-lib"
},
"bugs": {
"url": "https://github.com/cwysong85/msrp-node-lib/issues"
},
"homepage": "https://github.com/cwysong85/msrp-node-lib#readme",
"keywords": [
"msrp",
"message-session-relay-protocol",
"rfc4975",
"sdp",
"session-description-protocol",
"nodejs",
"javascript",
"real-time-communication",
"messaging",
"protocol",
"network",
"tcp",
"sip",
"voip",
"webrtc"
],
"main": "src/MsrpSdk.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:functional": "jest --config=tests/functional/jest.config.functional.js",
"test:functional:watch": "jest --config=tests/functional/jest.config.functional.js --watch",
"test:all": "npm run test && npm run test:functional",
"test:ci": "npm run test:coverage && npm run test:functional",
"lint": "echo 'Linting not configured yet'",
"lint:fix": "echo 'Lint fix not configured yet'",
"preversion": "echo 'Skipping tests for CI/CD infrastructure release'",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test",
"clean": "rm -rf coverage/ node_modules/.cache/",
"dev": "npm run test:watch"
},
"dependencies": {
"portfinder": "1.0.32"
},
"devDependencies": {
"jest": "^29.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/functional/"
],
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
]
}
}