This repository was archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 2.11 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
{
"name": "informative",
"version": "0.6.3",
"description": "React forms with internal state-management",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/bradwestfall/informative.git"
},
"keywords": [
"react",
"forms",
"state"
],
"author": "Brad Westfall",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "npm run clean && cross-env babel src --out-dir dist",
"clean": "rimraf dist/*",
"example": "npm run examples",
"examples": "cross-env node examples/cli.js",
"example:server": "cross-env EXAMPLE=$form node examples/server.js",
"example:basic-usage": "form=basic-usage npm run example:server",
"example:basic-state-access": "form=basic-state-access npm run example:server",
"example:submit-handling": "form=submit-handling npm run example:server",
"example:validation": "form=validation npm run example:server",
"example:initial-values": "form=initial-values npm run example:server",
"example:reset-form": "form=reset-form npm run example:server",
"example:field-wraps": "form=field-wraps npm run example:server",
"example:field-wrap-hoc": "form=field-wrap-hoc npm run example:server",
"example:full-featured": "form=full-featured npm run example:server",
"test": "cross-env mocha test/.setup.js test/**/**.js",
"sandbox": "EXAMPLE=sandbox node examples/server.js"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"cross-env": "^3.2.3",
"enzyme": "^2.7.1",
"express": "^4.15.2",
"inquirer": "^3.0.6",
"jsdom": "^9.12.0",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"dependencies": {}
}