-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "rxjs-redux",
"version": "1.1.4",
"description": "React-Redux-like bindings for Redux Observable",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .ts src",
"build": "tsc",
"clean": "rimraf lib dist",
"test": "mocha 'test/**/*.spec.ts'",
"shipit": "yarn clean && yarn build && yarn lint && yarn test && scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pricingmonkey/rxjs-redux.git"
},
"keywords": [
"Rx",
"RxJS",
"Redux",
"reactive",
"redux-observable",
"observable",
"connect"
],
"license": "BlueOak-1.0.0",
"peerDependencies": {
"redux": ">=4 <5",
"redux-observable": ">=1 <2",
"rxjs": ">=6.0.0-beta.0 <7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.34",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"redux": "^4.0.5",
"redux-observable": "^1.2.0",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"typescript": "^3.9.2"
}
}