-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-peer",
"version": "0.2.6",
"description": "Send data to someone else's browser as easy as using setState()",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.tsx",
"author": "Michael Dougall",
"license": "MIT",
"sideEffect": false,
"scripts": {
"test": "echo \"not yet\"",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook",
"build": "rm -rf dist && tsc && tsc -p ./tsconfig.esm.json",
"prepublish": "yarn build",
"preversion": "yarn test && yarn build && yarn size",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"size": "size-limit"
},
"files": [
"dist/"
],
"size-limit": [
{
"limit": "1.35 KB",
"path": "dist/esm/index.js"
}
],
"dependencies": {
"peerjs": "^0.3.18"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@storybook/react": "^4.1.11",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"@types/peerjs": "^0.0.30",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"@types/storybook__react": "^4.0.0",
"babel-core": "^6.26.3",
"changelog-verify": "^1.1.2",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-scripts": "2.1.3",
"size-limit": "^0.21.1",
"ts-loader": "^5.3.3",
"typescript": "^3.2.4",
"version-changelog": "^3.1.1"
},
"keywords": [
"peerjs",
"webrtc",
"web-rtc",
"peer-to-peer",
"p2p",
"react-hooks",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/madou/react-peer.git"
},
"bugs": {
"url": "https://github.com/madou/react-peer/issues"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"mapCoverage": true,
"testRegex": "__tests__/.*\\.test\\.tsx$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "<rootDir>test/setup.js",
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json",
"skipBabel": true
}
}
}
}