-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "mobx-schema-form",
"version": "1.14.2",
"description": "Connects MobX FormStore, React-Schema-Form and React-Toolbox",
"main": "./lib",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js --require ./test/setup.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js --require ./test/setup.js",
"prepublish": "npm build && npm test"
},
"dependencies": {
"classnames": "^2.2.5",
"hammerjs": "^2.0.8",
"lodash.template": "^4.0.0",
"objectpath": "^1.2.1",
"prop-types": "^15.5.10",
"react-input-mask": "^2.0.4",
"react-schema-form": "^0.8.8",
"sugar": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.4.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"fast-async": "6.0.34",
"jsdom": "^9.9.1",
"mocha": "^2.3.4",
"mobx": "^2.2.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-form-store": "^1.0.5 || ^2.0.0",
"mobx-react": "^3.5.0 || ^4.0.0 || ^5.2.5",
"react": "^15.3.2 || ^16.0.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.6.2",
"react-toolbox": "^1.3.0 || ^2.0.0 || ^3.0.0 || ^2.0.0-beta.10"
},
"peerDependencies": {
"babel-polyfill": "^6.9.1",
"lodash.template": "^4.0.0",
"mobx": "^2.2.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-form-store": "^1.0.5",
"mobx-react": "^3.5.0 || ^4.0.0 || ^5.2.5",
"react": "^15.3.2 || ^16.0.0",
"react-toolbox": "^1.3.0 || ^2.0.0 || ^3.0.0 || ^2.0.0-beta.10"
},
"files": [
"lib",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/alexhisen/mobx-schema-form.git"
},
"keywords": [
"mobx",
"form",
"react",
"schema",
"react-toolbox",
"validation"
],
"author": "Alex Hisen <[email protected]>",
"contributors": [
"Pawel Rychlik <[email protected]>",
"Mateusz Mrowiec <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexhisen/mobx-schema-form/issues"
},
"homepage": "https://github.com/alexhisen/mobx-schema-form"
}