forked from formio/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.69 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-formio",
"version": "1.3.12",
"description": "React rendering library for form.io embedded forms.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --timeout 30000 --reporter spec test/.setup.js **/*.spec.js",
"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",
"browserify-shim": {
"react": "global:React"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"formio-utils": "^0.3.0",
"formiojs": "^1.3.5",
"immutable": "^3.8.1",
"lodash": "^4.15.0",
"moment": "^2.10.6",
"react-dropzone": "^3.5.3",
"react-flatpickr": "^3.1.1",
"react-pagify": "^2.1.1",
"react-quill": "^0.4.1",
"react-redux": "^4.4.5",
"react-router": "4.0.0-alpha.6",
"react-signature-canvas": "^0.1.3",
"react-text-mask": "^4.1.0",
"react-widgets": "^3.4.4",
"reactabular": "^3.0.5",
"redux": "^3.5.2",
"redux-injector": "0.1.0",
"redux-view": "^0.1.5",
"reselect": "^2.5.4",
"segmentize": "^0.4.1",
"text-mask-addons": "^3.5.0"
},
"devDependencies": {
"ajv-pack": "^0.2.5",
"babel-cli": "^6.10.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",
"chai": "^3.5.0",
"deep-freeze": "0.0.1",
"del": "^2.0.2",
"enzyme": "^2.0.0",
"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",
"expect": "^1.20.2",
"jsdom": "^9.4.2",
"mocha": "^2.4.5",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-transform-catch-errors": "^1.0.0",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
},
"files": [
"dist",
"lib",
"formio.css"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
}
}