-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
82 lines (82 loc) · 2.71 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
{
"name": "skylinkjs",
"description": "Temasys Web SDK is an open-source client-side library for your web-browser that enables any website to easily leverage the capabilities of WebRTC and its direct data streaming powers between peers for audio/video conferencing or file transfer.",
"version": "2.7.0",
"homepage": "https://temasys.io/",
"author": {
"name": "Temasys Communications Pte. Ltd.",
"email": "[email protected]"
},
"main": "src/index.js",
"module": "src/index.js",
"repository": "Temasys/SkylinkJS",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup --config configs/rollup/rollup.dev.config.js --bundleConfigAsCjs && npm run build:doc-public",
"publish": "npm run build && ./node_modules/rollup/dist/bin/rollup --config configs/rollup/rollup.prod.config.js --bundleConfigAsCjs",
"prestart": "npm run build && ./start.sh &",
"lint": "node_modules/eslint/bin/eslint.js src/**",
"build:doc-public": "npx jsdoc -r -c configs/jsdoc/jsdoc.config.json",
"build:doc-private": "npx jsdoc -p -r -c configs/jsdoc/jsdoc.config.json",
"watch:doc-src": "npx nodemon --exec 'npm run build:doc-public' --watch src",
"watch:docs": "npm run watch:doc-src"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"braintree-jsdoc-template": "^3.3.0",
"clone": "~2.1.2",
"crypto-js": "4.2.0",
"socket.io-client": "^2.4.0",
"webrtc-adapter": "^9.0.1"
},
"devServer": {
"contentBase": "./dist"
},
"keywords": [
"webrtc",
"real-time",
"p2p"
],
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@babel/preset-env": "v7.23.2",
"@babel/register": "7.16.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.1.3",
"docdash": "^2.0.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"finalhandler": "^1.1.2",
"husky": "^7.0.4",
"jsdoc": "^4.0.3",
"jsdom": "^18.0.1",
"jsdom-global": "3.0.2",
"nodemon": "^3.1.2",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.10.0",
"rollup-plugin-gzip": "^3.1.2",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-serve": "^1.1.0",
"serve-static": "^1.14.1",
"whatwg-fetch": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
}
}