forked from andrewhathaway/Winterfell
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "winterfell",
"version": "1.1.4",
"description": "Generate complex, validated and extendable JSON-based forms in React",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build:examples": "gulp build-examples",
"build": "babel src --out-dir dist && webpack",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"winterfell",
"form",
"forms",
"engine",
"react",
"validation",
"complex",
"extendable",
"customisable",
"conditional",
"questions",
"react-component"
],
"author": "Andrew Hathaway <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/andrewhathaway/winterfell.git"
},
"license": "MIT",
"peerDependencies": {},
"dependencies": {
"babelify": "^6.3.0",
"keycodez": "^1.0.0",
"lodash": "^3.10.1",
"react-dom": "^16.6.3",
"validator": "^4.0.5"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"browserify": "^11.0.1",
"gulp": "^3.9.0",
"gulp-uglify": "^1.2.0",
"rimraf": "^2.4.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.12.1"
}
}