-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "redux-rtc",
"version": "1.0.3",
"description": "Peer 2 Peer connected states using Redux and WebRTC",
"main": "./main.js",
"scripts": {
"build": "NODE_ENV=production IS_DEMO=demo webpack && webpack",
"start": "IS_DEMO=demo webpack && http-server -p 8000 -c-1",
"test": "TEST=true jest ./src",
"test:cov": "npm run test && codecov --token=9437db3b-3c3c-44cc-b6c7-990095c82908"
},
"keywords": [
"redux",
"react",
"WebRTC"
],
"author": "Ryan P. Hansen",
"license": "ISC",
"dependencies": {
"redux": "^3.6.0",
"rp-utils": "^1.1.7",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"babelify": "^7.3.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"webpack": "^2.2.1"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageFormats": ["json", "html"]
},
"repository": {
"type": "git",
"url": "https://github.com/rphansen91/redux-rtc"
}
}