forked from peer-calls/peer-calls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "peer-calls",
"version": "1.3.2",
"description": "Group peer to peer video calls for anybody.",
"repository": "https://github.com/jeremija/peer-calls",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --coverage",
"testify": "jest --watch",
"lint": "eslint ./index.js ./src/js"
},
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4",
"express": "^4.13.3",
"flux": "^2.1.1",
"jade": "^1.11.0",
"react": "^0.14.8",
"react-addons-css-transition-group": "^0.14.8",
"react-dom": "^0.14.8",
"simple-peer": "^6.0.3",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"underscore": "^1.8.3",
"uuid": "^2.0.1"
},
"devDependencies": {
"babel-jest": "^10.0.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify-middleware": "^7.0.0",
"eslint": "^2.5.3",
"eslint-plugin-react": "^4.2.3",
"jest-cli": "^0.10.0",
"less-middleware": "^2.0.1",
"react-addons-test-utils": "^0.14.8",
"uglify-js": "^2.6.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/debug",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/underscore"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}