-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "rematch-inject",
"version": "0.1.7",
"description": "Injecting rematch models to React components in MobX-like way",
"main": "lib/index.js",
"files": [
"lib",
"src",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/today-/rematch-inject.git"
},
"scripts": {
"test": "eslint .",
"build": "babel ./src -d ./lib"
},
"types": "./index.d.ts",
"author": "today- (https://github.com/today-)",
"license": "ISC",
"keywords": [
"rematch",
"react",
"inject",
"redux",
"connect",
"mobx"
],
"homepage": "https://github.com/today-/rematch-inject",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0",
"redux": "^3.0.0 || ^4.0.0",
"react-redux": "^5.1.1"
}
}