forked from cpunion/react-actioncable-provider
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "@thrash-industries/react-actioncable-provider",
"version": "4.0.3",
"description": "ActionCable Provider for React",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "babel lib/index.js --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JackHowa/react-actioncable-provider"
},
"keywords": [
"ActionCable",
"react",
"Rails",
"WebSockets"
],
"files": [
"dist/index.js"
],
"author": "Li Jie <cpunion@gmail.com>",
"contributors": [
"jackhowa <jackhowa@fastmail.com>",
"hashwin"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JackHowa/react-actioncable-provider/issues"
},
"homepage": "https://github.com/JackHowa/react-actioncable-provider",
"dependencies": {
"actioncable": "^5.2.8",
"prop-types": "^15.8.1",
"react": "^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"babel-jest": "^29.7.0",
"babel-preset-minify": "^0.5.2",
"chai": "^5.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.15.8",
"jest": "^26.6.3",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
],
"coverageDirectory": "coverage",
"setupFiles": [
"<rootDir>/config/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|docs|node_modules)/"
]
},
"directories": {
"lib": "lib"
}
}