forked from tommikaikkonen/redux-orm-proptypes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 989 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
34
35
36
37
38
{
"name": "redux-orm-proptypes",
"version": "0.1.0",
"description": "React PropTypes validation and defaultProps mixin for Redux-ORM Models",
"main": "lib/index.js",
"scripts": {
"test": "make test",
"prepublish": "make build"
},
"keywords": [
"redux",
"orm",
"proptypes",
"react"
],
"author": "Tommi Kaikkonen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tommikaikkonen/redux-orm-proptypes.git"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-es2015-classes": "6.18.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^21.2.1"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}