forked from formsy/formsy-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "formsy-react",
"version": "1.1.5",
"description": "A form input builder and validator for React",
"keywords": [
"form",
"forms",
"formsy",
"react",
"react-component",
"validation"
],
"standard-version": {
"skip": {
"tag": true
}
},
"license": "MIT",
"homepage": "https://github.com/formsy/formsy-react",
"bugs": "https://github.com/formsy/formsy-react/issues",
"repository": {
"type": "git",
"url": "https://github.com/formsy/formsy-react.git"
},
"author": "Christian Alfoni",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.config.js && yarn run prepublish",
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples",
"lint": "eslint src/**/*.js",
"prepublish": "rm -Rf ./lib && babel ./src/ -d ./lib/",
"changelog": "standard-changelog",
"test": "babel-node testrunner"
},
"dependencies": {
"form-data-to-object": "^0.2.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jsdom": "^11.5.1",
"nodeunit": "^0.11.1",
"react": "^16.2.0 || ^16.0.0",
"react-addons-pure-render-mixin": "^15.6.0",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^16.2.0 || ^16.0.0",
"sinon": "^4.1.3",
"standard-changelog": "^1.0.7",
"standard-version": "^4.2.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"peerDependencies": {
"react": "^15.6.1 || ^16.0.0",
"react-dom": "^15.6.1 || ^16.0.0"
}
}