Skip to content

Updates to the package management #202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 9, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/.*
14 changes: 12 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"version": "0.7.7",
"authors": [
"Textalk",
"David Jensen <david.lgj@gmail.com>"
"David Jensen <david.lgj@gmail.com>",
"Cameron Edwards",
"Mike Marcacci",
"Denis Dervisevic <denis@dervisevic.se>"
],
"moduleType": [
"globals"
Expand All @@ -23,10 +26,17 @@
"license": "MIT",
"ignore": [
"**/.*",
"*.js",
"*.json",
"node_modules",
"bower_components",
"test",
"coverage"
"coverage",
"docs",
"examples",
"gulp",
"CHANGELOG",
"LICENSE"
],
"dependencies": {
"angular": ">= 1.2",
Expand Down
30 changes: 29 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,34 @@
{
"name": "angular-schema-form",
"version": "0.7.7",
"description": "Create forms from a JSON schema",
"description": "Create complex forms from a JSON schema with angular.",
"repository": "Textalk/angular-schema-form",
"main": "dist/schema-form.min.js",
"scripts": {
"test": "rm -fr coverage && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS karma.conf.js && find coverage/ -name lcov.info -print0 | xargs -0 cat | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Textalk",
"contributors": [
"David Jensen <david.lgj@gmail.com> (https://github.com/davidlgj)",
"Cameron Edwards (https://github.com/cameronprattedwards)",
"Mike Marcacci (https://github.com/mike-marcacci)",
"Denis Dervisevic <denis@dervisevic.se> (https://github.com/Dervisevic)"
],
"license": "MIT",
"dependencies": {
"angular": ">= 1.2",
"tv4": "~1.0.15",
"angular-sanitize": ">= 1.2",
"objectpath": "~1.1.0"
},
"keywords": [
"angular",
"angularjs",
"form",
"json",
"json-schema",
"schema"
],
"devDependencies": {
"chai": "^1.9.0",
"coveralls": "^2.11.0",
Expand All @@ -28,5 +50,11 @@
"sinon": "^1.9.0",
"sinon-chai": "^2.5.0",
"streamqueue": "0.0.5"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/Textalk/angular-schema-form/master/LICENSE"
}
]
}