-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "lib-kurento",
"version": "0.0.7",
"description": "A library for simplifying the creation of 'kurento-client's endpoints",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://github.com/givo/lib-kurento.git"
},
"keywords": [
"rtp",
"kurento",
"webrtc",
"typescript",
"node.js"
],
"author": "Matan Givoni",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^12.7.5",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"jest": "^25.0.0",
"ts-jest": "^23.10.5",
"typescript": "^3.6.3"
},
"dependencies": {
"kurento-client": "^6.12.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".(spec|ispec|test|e2e).ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}