forked from formio/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-formio",
"version": "4.0.0-alpha.1",
"description": "React renderer for form.io forms.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel ./src --ignore=*.spec.js --out-dir ./lib --presets es2015,react,stage-2",
"lint": "eslint src",
"watch": "babel ./src --watch --ignore=*.spec.js --out-dir ./lib --presets es2015,react,stage-2",
"prepublish": "npm run lint; npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/react-formio.git"
},
"keywords": [
"React",
"component",
"Formio",
"Forms",
"react-component"
],
"author": "Randall Knutson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/react-formio/issues"
},
"homepage": "https://github.com/formio/react-formio#readme",
"dependencies": {
"babel-polyfill": "^6.23.0",
"formiojs": "^4.0.0-alpha.7",
"prop-types": "^15.5.7",
"react-bootstrap": "^0.31.0",
"recompose": "^0.23.5",
"redux-view": "^0.2.1"
},
"devDependencies": {
"ajv-pack": "^0.2.5",
"babel-cli": "^6.24.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.4.3",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-config-formio": "^1.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^9.4.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-transform-catch-errors": "^1.0.0",
"webpack": "^2.6.1"
},
"files": [
"lib"
],
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
}
}