forked from cpunion/react-actioncable-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "react-actioncable-provider",
"version": "2.0.0",
"description": "ActionCable Provider for React",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpunion/react-actioncable-provider.git"
},
"keywords": [
"ActionCable",
"react"
],
"author": "Li Jie <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cpunion/react-actioncable-provider/issues"
},
"homepage": "https://github.com/cpunion/react-actioncable-provider#readme",
"dependencies": {
"actioncable": "^5.0.0",
"create-react-class": "^15.6.2",
"prop-types": "^15.6.0",
"react": "~16.3.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.1.0",
"jest": "^23.6.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
],
"coverageDirectory": "coverage",
"setupFiles": [
"<rootDir>/config/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|docs|node_modules)/"
]
}
}