forked from formio/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.25 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
{
"name": "react-formio",
"version": "4.3.0",
"description": "React renderer for form.io forms.",
"main": "lib/index.js",
"scripts": {
"test": "karma start --single-run",
"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.26.0",
"core-js": "^3.1.4",
"eventemitter2": "^5.0.1",
"formiojs": "^4.9.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2"
},
"devDependencies": {
"ajv-pack": "^0.2.5",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^8.0.6",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"escope": "^3.6.0",
"eslint": "^4.18.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-mocha": "^5.2.0",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^9.4.2",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"react-transform-catch-errors": "^1.0.0",
"sinon": "^7.0.0",
"webpack": "^2.7.0"
},
"files": [
"lib"
],
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
}
}