forked from AgencyPMG/higherform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 KB
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
{
"name": "higherformtemp",
"description": "A ReactJS form library built around higher order components",
"main": "./lib/index.js",
"version": "0.8.0",
"license": "MIT",
"scripts": {
"test": "mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"clean": "rimraf lib",
"compile": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run compile",
"serve": "webpack-dev-server --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/ericelsken/higherform"
},
"dependencies": {
"invariant": "~2.0",
"hoist-non-react-statics": "~1.0",
"lodash.isplainobject": "~4.0",
"prop-types": "~15.5"
},
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0",
"mocha": "^3.0.0",
"chai": "^3.5.0",
"babel-core": "^6.13.0",
"babel-cli": "^6.11.0",
"babel-register": "^6.11.0",
"babel-preset-es2015": "^6.13.0",
"babel-preset-react": "^6.11.0",
"babel-preset-stage-2": "^6.13.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-loader": "^6.2.5",
"rimraf": "^2.5.0",
"jsdom": "^9.4.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"authors": [
"Eric Elsken <eric.elsken@gmail.com>"
],
"files": [
"src",
"lib"
]
}