forked from prometheusresearch-archive/react-forms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.04 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
{
"name": "react-forms",
"version": "1.0.0-rc3",
"description": "Forms library for React",
"homepage": "http://prometheusresearch.github.io/react-forms/",
"main": "lib/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/prometheusresearch/react-forms.git"
},
"keywords": [
"react",
"react-component",
"forms"
],
"peerDependencies": {
"react": "^0.13.0",
"immutable": "^3.4.0"
},
"devDependencies": {
"browserify": "^5.9.0",
"immutable": "^3.4.0",
"jsxhint": "^0.6.0",
"mocha": "^1.18.2",
"mochify": "^1.1.0",
"react": "^0.13.0",
"sinon": "^1.9.1"
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true,
"target": "es5",
"stripTypes": true
}
]
]
},
"author": "Prometheus Research",
"license": "MIT",
"bugs": {
"url": "https://github.com/prometheusresearch/react-forms/issues"
},
"dependencies": {
"reactify": "^0.17.1"
}
}