-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.46 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
{
"name": "react-schema-final-form",
"main": "./lib/index.js",
"version": "0.2.0",
"title": "react-schema-final-form",
"description": "A simple library to build a form based on react-final-form and JSON Schema.",
"homepage": "https://leuction.github.io/react-schema-final-form",
"keywords": [
"JSON Schema",
"React Final Form",
"React"
],
"files": [
"lib",
"src"
],
"author": {
"name": "Shuo Wang",
"url": "https://github.com/leuction"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leuction/react-schema-final-form"
},
"engines": {
"npm": ">=3.0.0",
"node": ">=6.0.0"
},
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.2.0",
"babel-plugin-external-helpers": "6.18.0",
"babel-plugin-lodash": "^3.3.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browser-sync": "2.18.13",
"enzyme": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"final-form": "^4.4.0",
"final-form-arrays": "^1.0.4",
"gh-pages": "^1.2.0",
"jest": "^22.4.2",
"np": "^2.20.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-final-form": "^3.1.5",
"react-final-form-arrays": "^1.0.4",
"rimraf": "^2.6.2",
"rollup": "0.52.0",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "4.3.1"
},
"scripts": {
"clean": "rimraf lib",
"prebuild": "rimraf lib",
"build": "rollup -c config/prod.js",
"prebuild:dev": "rimraf lib",
"build:dev": "rollup -c config/dev.js -w",
"prepare": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"deploy": "gh-pages -d docs"
},
"peerDependencies": {
"ajv": "^6.3.0",
"final-form": "^4.4.0",
"final-form-arrays": "^1.0.4",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-final-form": "^3.1.5",
"react-final-form-arrays": "^1.0.4"
},
"jest": {}
}