-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
{
"name": "react-pusher",
"version": "0.2.0",
"description": "A react component for subscribing to pusher channels",
"repository": "https://github.com/rainforestapp/react-pusher",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./index.js __tests__/index.js",
"prepublish": "yarn run build",
"build": "babel -o ./dist/index.js ./index.js"
},
"keywords": [
"pusher",
"react"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0",
"babel-jest": "^12.1.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"enzyme": "^2.9.1",
"eslint": "^2.9.0",
"eslint-config-rainforest": "^0.1.2",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"event-emitter": "^0.3.4",
"jest": "^21.2.1",
"pusher": "^1.3.0",
"pusher-test-stub": "github:pusher-community/pusher-js-test-stub",
"react": "^15.6.1",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"react-test-renderer": "^15.6.1"
},
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"prop-types": "^15.6.0"
},
"jest": {
"timers": "fake",
"automock": true,
"unmockedModulePathPatterns": [
"<rootDir>/node_modules",
".*mock.*",
".*stub.*"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
".*mock.*",
".*stub.*"
]
},
"peerDependencies": {
"pusher-js": "*",
"react": ">=15"
}
}