-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
83
84
85
{
"name": "rx-react-container",
"version": "0.10.0",
"author": "Bogdan Savluk <savluk.bogdan@gmail.com>",
"description": "Provides HoC component, and utilities to connect RxJS logic to React Component.",
"keywords": [
"react",
"rxjs",
"container",
"isomorphic"
],
"repository": {
"type": "git",
"url": "https://github.com/zxbodya/rx-react-container.git"
},
"license": "MIT",
"engines": {
"node": ">=8.9.0"
},
"main": "dist/index.js",
"module": "dist/rx-react-container.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint './**/*.{ts,js,tsx,jsx}'",
"cover": "jest --coverage",
"test": "jest",
"build": "rimraf dist && rollup -c",
"watch": "rollup -c -w",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/enzyme": "^3.10.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^24.0.18",
"@types/react": "^17.0.49",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"codecov": "^3.6.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-17-updated": "^1.0.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-typescript2": "^0.33.0",
"rxjs": "^7.5.6",
"temp-dir": "^2.0.0",
"typescript": "^4.8.2"
},
"peerDependencies": {
"react": "^17.0.2",
"rxjs": "^7.5.6",
"tslib": "^2.4.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"./setupJest"
],
"roots": [
"src"
]
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0"
}
}