forked from Peterrkang/react-actioncable-provider
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.91 KB
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
{
"name": "react-actioncable-provider",
"version": "2.0.0",
"description": "ActionCable Provider for React",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:es",
"build:lib": "babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"prepare": "npm run build",
"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 <cpunion@gmail.com>",
"license": "MIT",
"contributors": [
{
"name": "Patrick Johnson",
"email": "patrick@jedioftheco.de"
}
],
"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.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"jest": "^21.2.1",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.1.1"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
],
"coverageDirectory": "coverage",
"setupFiles": [
"<rootDir>/config/polyfills.js",
"<rootDir>/config/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|docs|node_modules)/"
]
}
}