-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
109 lines (109 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "peer-data",
"version": "3.2.5",
"description": "PeerData - library for files, media streaming/sharing using WebRTC",
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"test": "jest --no-cache",
"test:cov": "yarn test -- --coverage",
"test:watch": "yarn test -- --watchAll",
"prepare": "yarn build",
"prebuild": "yarn clean",
"postbuild": "rimraf dist/**/__tests__",
"posttest": "yarn typecheck && yarn lint",
"preversion": "yarn test",
"postversion": "git push && git push --tags",
"check": "npm-check -u"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vardius/peer-data.git"
},
"files": [
"dist"
],
"keywords": [
"PeerData",
"WebRTC",
"cdn",
"web",
"rtc",
"video",
"player",
"html5",
"peer",
"socket",
"real",
"time",
"communication"
],
"author": {
"name": "Rafał Lorenz",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vardius/peer-data/issues"
},
"homepage": "https://github.com/vardius/peer-data#readme",
"jest": {
"transform": {
".(ts?)": "ts-jest"
},
"testMatch": [
"**/?(*.)(spec|test).{t,j}s"
],
"testPathIgnorePatterns": [
"<rootDir>/(node_modules|lib|es|dist)"
],
"collectCoverageFrom": [
"src/**/*.{t,j}s",
"!src/**/*.d.ts"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
]
},
"peerDependencies": {
"webrtc-adapter": "^7.2.3"
},
"dependencies": {
"@types/uuid": "^8.0.0",
"socket.io-client": "^2.3.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/socket.io-client": "^1.4.29",
"@types/webrtc": "0.0.25",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"codecov": "^3.6.5",
"cross-env": "^7.0.0",
"dts-bundle": "^0.7.3",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"jest-environment-node-debug": "^2.0.0",
"npm-check": "^5.7.1",
"rimraf": "^3.0.1",
"rollup": "^1.31.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
}
}