This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "react-formly",
"version": "0.0.5",
"description": "JSON powered forms for react - Currently in alpha state, API subject to change...",
"scripts": {
"test": "gulp ci --travis",
"dev": "gulp dev",
"build": "gulp build",
"deploy": "gulp deploy",
"release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
"release:beta": "npm run release && npm run tag:beta",
"tag:beta": "with-package npm dist-tag add [email protected] beta"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/react-formly.git"
},
"main": "dist/react-formly.min.js",
"keywords": [
"react",
"react components",
"library",
"forms",
"react-component",
"reactjs",
"html forms"
],
"author": "Kent C. Dodds <[email protected]> (http://kent.doddsfamily.us)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentcdodds/react-formly/issues"
},
"homepage": "https://github.com/kentcdodds/react-formly",
"devDependencies": {
"chai": "^1.9.1",
"connect": "^3.2.0",
"gulp": "^3.8.8",
"gulp-gh-pages": "^0.3.4",
"gulp-help": "^1.1.0",
"gulp-jshint": "^1.8.4",
"gulp-react": "^3.0.1",
"gulp-webpack": "^0.3.0",
"jshint-stylish": "^0.4.0",
"jsx-loader": "^0.13.2",
"karma": "^0.12.19",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.4",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.6",
"livereload": "^0.3.4",
"mocha": "^1.21.3",
"react-addons": "^0.9.0",
"rimraf": "^2.2.8",
"serve-static": "^1.6.1",
"webpack": "^1.3.2-beta9",
"with-package": "^0.2.0",
"yargs": "^1.3.1"
},
"dependencies": {
"react": "^0.14.8"
}
}