-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 1.61 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
{
"name": "redux-form-examples",
"version": "1.0.0",
"description": "Below are a list of examples that demonstrate the capabilities of `redux-form` for testing and learning purposes.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "npm --prefix ./$form install && npm --prefix ./$form start",
"example:asyncChangeValidation": "form=asyncChangeValidation npm run example",
"example:asyncValidation": "form=asyncValidation npm run example",
"example:fieldArrays": "form=fieldArrays npm run example",
"example:fieldLevelValidation": "form=fieldLevelValidation npm run example",
"example:immutable": "form=immutable npm run example",
"example:initializeFromState": "form=initializeFromState npm run example",
"example:material-ui": "form=material-ui npm run example",
"example:normalizing": "form=normalizing npm run example",
"example:react-widgets": "form=react-widgets npm run example",
"example:selectingFormValues": "form=selectingFormValues npm run example",
"example:simple": "form=simple npm run example",
"example:submitValidation": "form=submitValidation npm run example",
"example:syncValidation": "form=syncValidation npm run example",
"example:wizard": "form=wizard npm run example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redux-form/redux-form-examples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/redux-form/redux-form-examples/issues"
},
"homepage": "https://github.com/redux-form/redux-form-examples#readme"
}