-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
82 lines (82 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rx-connect",
"version": "0.0.0",
"description": "Connect React components to Redux store with RxJS-based HOC",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src",
"build:lib": "babel src --ignore __tests__ --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/rx-connect.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/rx-connect.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"test": "npm run lint && jest",
"prepublish": "npm run clean && npm run test && npm run build",
"examples:build:blog": "cd examples/blog/ && cross-env NODE_ENV=production npm run build",
"examples:build:wikistream": "cd examples/wikistream/ && cross-env NODE_ENV=production npm run build",
"examples:build": "npm run examples:build:blog && npm run examples:build:wikistream",
"ghPages": "npm run examples:build && gh-pages -d . --src 'examples/*/dist/**'"
},
"keywords": [
"redux",
"react",
"rx",
"rxjs"
],
"author": "Sergei Egorov <[email protected]>",
"homepage": "https://github.com/bsideup/rx-connect",
"license": "MIT",
"repository": {
"url": "[email protected]:bsideup/rx-connect.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bsideup/rx-connect/issues"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js"
],
"testPathDirs": [
"src"
]
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "^3.1.4",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.9.0",
"gh-pages": "^0.12.0",
"jest-cli": "^18.0.0",
"react": "^15.4.2",
"react-redux": "^5.0.2",
"react-test-renderer": "^15.4.2",
"redux": "^3.5.2",
"rimraf": "^2.5.4",
"rx": "^4.1.0",
"rxjs": "^5.1.0",
"webpack": "^2.2.1",
"yargs": "^6.6.0"
},
"peerDependencies": {
"react": "^15.3.0",
"rxjs": "^5.1.0"
},
"dependencies": {
"lodash.isarray": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.isplainobject": "^4.0.6",
"symbol-observable": "^1.0.4"
}
}