Add repository to package.json (prevents npm WARN)

This prevents the npm warning:
``` 
npm WARN package.json formsy-react@0.8.0 No repository field.
```
This commit is contained in:
Jonas Windey 2015-03-09 08:46:28 +01:00
parent 86aec656df
commit 51bdf8da4f
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,10 @@
"name": "formsy-react",
"version": "0.8.0",
"description": "A form input builder and validator for React JS",
"repository": {
"type": "git",
"url": "https://github.com/christianalfoni/formsy-react.git"
}
"main": "src/main.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node ./specs"