-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·60 lines (59 loc) · 1.61 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
{
"name": "mirage-js",
"version": "1.0.17",
"description": "Allows developers access to a customizable video chat component",
"main": "./lib/index.js",
"scripts": {
"prepublish": "node_modules/babel-cli/bin/babel.js src --out-dir lib",
"test": "karma start",
"dev": "nodemon server.js",
"start": "node server.js"
},
"babel": {
"presets": ["es2015"]
},
"authors": [
"Kevin <[email protected]>",
"Morgan <[email protected]>",
"Blake <[email protected]>"
],
"license": "ISC",
"homepage": "https://github.com/team-genjutsu/miragejs",
"dependencies": {
"socket.io": "^1.3.6",
"socket.io-client": "^1.4.8",
"webrtc-adapter": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.13.0",
"babel-tape-runner": "^2.0.1",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"express": "^4.14.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.2",
"nodemon": "^1.10.0",
"serve-favicon": "^2.3.0",
"sinon": "^2.0.0-pre.2",
"tape": "^4.6.0",
"webpack": "^1.12.9"
},
"engines": {
"node": "6.2.2"
}
}