-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "redux-hooked",
"version": "0.1.4",
"description": "react-redux replacement with hooks",
"main": "dist/index.js",
"react-native": "src/index.js",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"build": "babel src -d dist",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run lint"
},
"repository": "git@github.com:bhoos/red-hooks",
"author": "Ranjan Shrestha <ranjan@sharingapples.com>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"react": "^16.8.4",
"rimraf": "^2.6.3"
}
}