-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "circuit-sdk",
"version": "1.2.8409",
"description": "Circuit SDK",
"main": "circuit-node.js",
"scripts": {
"test:browser": "node test/index",
"test:node": "mocha ./test/node/* --recursive --timeout=5000 --exit",
"test": "npm run test:node && npm run test:browser"
},
"author": "Unify Inc.",
"contributors": [
"Roger Urscheler <[email protected]>",
"Rodrigo Pastro <[email protected]>",
"Johannes Ruetschi <[email protected]>"
],
"license": "Apache-2.0",
"homepage": "https://github.com/circuit/circuit-sdk",
"engines": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/circuit/circuit-sdk"
},
"bugs": {
"url": "http://github.com/circuit/circuit-sdk/issues",
"mail": ""
},
"keywords": [
"api",
"webrtc",
"circuit",
"collaboration",
"sdk"
],
"browser": {
"electron": false,
"./circuit-node.js": "./circuit.js"
},
"unpkg": "circuit.min.js",
"dependencies": {
"mime": "^2.4.4",
"ws": "~3.3.3"
},
"devDependencies": {
"chai": "^4.1.2",
"express": "^4.16.2",
"globby": "^8.0.1",
"minimist": "^1.2.0",
"mocha": "^8.1.3",
"puppeteer": "^1.1.1",
"serve-static": "^1.13.2"
}
}