-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "simple-p2p",
"version": "0.2.3",
"description": "The simple p2p module for modern browsers.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . --watch",
"lint": "eslint . --ext=js,ts && tsc -p . --noEmit",
"test": "karma start",
"test:watch": "karma start --no-single-run --auto-watch --no-browsers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leader22/simple-p2p.git"
},
"keywords": [
"webrtc",
"p2p"
],
"author": "Yuji Sugiura",
"license": "MIT",
"bugs": {
"url": "https://github.com/leader22/simple-p2p/issues"
},
"homepage": "https://github.com/leader22/simple-p2p#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jasmine": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.3",
"karma-safari-launcher": "^1.0.0",
"prettier": "^2.0.2",
"rollup": "^2.3.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sdp-transform": "^2.14.0",
"typescript": "^3.8.3"
},
"dependencies": {
"debug": "^4.1.1",
"enhanced-datachannel": "^1.2.5",
"eventemitter3": "^4.0.0"
}
}