-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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": "nextrtc-js-client",
"version": "1.0.7",
"description": "JS Client to NextRTC signaling server",
"main": "distribution/nextRTC.js",
"scripts": {
"prepublish": "npm run build",
"pretest": "jshint",
"test": "./node_modules/.bin/mocha --recursive",
"build": "babel source --out-dir distribution"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mslosarz/nextrtc-js-client.git"
},
"keywords": [
"NextRTC",
"WebRTC",
"Signaling Server"
],
"author": "Marcin Ślósarz <m.slosarz@ahej.pl> (http://software2.pl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mslosarz/nextrtc-js-client/issues"
},
"homepage": "https://github.com/mslosarz/nextrtc-js-client#readme",
"dependencies": {
"webrtc-adapter": "^6.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-minify": "^0.4.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-string": "^1.4.0",
"jshint": "^2.9.5",
"mocha": "^5.1.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
},
"jshintConfig": {
"esversion": 6,
"predef": [
"source",
"test"
],
"strict": true,
"boss": true,
"node": true,
"eqeqeq": true,
"newcap": false,
"undef": true,
"unused": true,
"onecase": true,
"lastsemic": true,
"freeze": true
}
}