Skip to content

Commit

Permalink
Added more to bower ignore, for light package. Updated package.json f…
Browse files Browse the repository at this point in the history
…or publishing on npm
  • Loading branch information
Dervisevic committed Jan 8, 2015
1 parent c9a91a5 commit 410c930
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
1 change: 1 addition & 0 deletions .npmignore
@@ -0,0 +1 @@
**/.*
12 changes: 11 additions & 1 deletion bower.json
Expand Up @@ -8,6 +8,9 @@
"authors": [ "authors": [
"Textalk", "Textalk",
"David Jensen <david.lgj@gmail.com>" "David Jensen <david.lgj@gmail.com>"
"Cameron Edwards",
"Mike Marcacci",
"Denis Dervisevic <denis@dervisevic.se>",
], ],
"moduleType": [ "moduleType": [
"globals" "globals"
Expand All @@ -23,10 +26,17 @@
"license": "MIT", "license": "MIT",
"ignore": [ "ignore": [
"**/.*", "**/.*",
"*.js",
"*.json",
"node_modules", "node_modules",
"bower_components", "bower_components",
"test", "test",
"coverage" "coverage",
"docs",
"examples",
"gulp",
"CHANGELOG",
"LICENSE"
], ],
"dependencies": { "dependencies": {
"angular": ">= 1.2", "angular": ">= 1.2",
Expand Down
32 changes: 30 additions & 2 deletions package.json
@@ -1,12 +1,34 @@
{ {
"name": "angular-schema-form", "name": "angular-schema-form",
"version": "0.7.7", "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": { "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" "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", "author": "Textalk",
"contributors": [
"David Jensen <david.lgj@gmail.com> (https://github.com/davidlgj)",
"Cameron Edwards (https://github.com/cameronprattedwards)",
"Mike Marcacci <david.lgj@gmail.com> (https://github.com/mike-marcacci)",
"Denis Dervisevic <denis@dervisevic.se> (https://github.com/Dervisevic)",
],
"license": "MIT", "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": { "devDependencies": {
"chai": "^1.9.0", "chai": "^1.9.0",
"coveralls": "^2.11.0", "coveralls": "^2.11.0",
Expand All @@ -29,4 +51,10 @@
"sinon-chai": "^2.5.0", "sinon-chai": "^2.5.0",
"streamqueue": "0.0.5" "streamqueue": "0.0.5"
} }
} },
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/Textalk/angular-schema-form/master/LICENSE"
}
]

0 comments on commit 410c930

Please sign in to comment.