-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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": "react-pusher-hoc",
"version": "1.0.7",
"description": "Higher-Order Component for handling incoming [pusher.com](https://pusher.com) events like a charm.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm t && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fel1xw/react-pusher-hoc.git"
},
"keywords": [
"react",
"pusher",
"hoc",
"pusher-js",
"higher-order component"
],
"author": {
"name": "Felix Wostal",
"url": "https://felixwostal.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fel1xw/react-pusher-hoc/issues"
},
"homepage": "https://github.com/fel1xw/react-pusher-hoc#readme",
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^23.3.14",
"@types/node": "^10.17.28",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"http-server": "^0.12.3",
"jest": "^24.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^2.7.1",
"ts-jest": "^23.10.5",
"typedoc": "^0.15.8",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.3"
}
}