Skip to content

Commit 410c930

Browse files
committed
Added more to bower ignore, for light package. Updated package.json for publishing on npm
1 parent c9a91a5 commit 410c930

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/.*

bower.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"authors": [
99
"Textalk",
1010
"David Jensen <[email protected]>"
11+
"Cameron Edwards",
12+
"Mike Marcacci",
13+
"Denis Dervisevic <[email protected]>",
1114
],
1215
"moduleType": [
1316
"globals"
@@ -23,10 +26,17 @@
2326
"license": "MIT",
2427
"ignore": [
2528
"**/.*",
29+
"*.js",
30+
"*.json",
2631
"node_modules",
2732
"bower_components",
2833
"test",
29-
"coverage"
34+
"coverage",
35+
"docs",
36+
"examples",
37+
"gulp",
38+
"CHANGELOG",
39+
"LICENSE"
3040
],
3141
"dependencies": {
3242
"angular": ">= 1.2",

package.json

+30-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,34 @@
11
{
22
"name": "angular-schema-form",
33
"version": "0.7.7",
4-
"description": "Create forms from a JSON schema",
4+
"description": "Create complex forms from a JSON schema with angular.",
5+
"repository": "Textalk/angular-schema-form",
6+
"main": "dist/schema-form.min.js",
57
"scripts": {
68
"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"
79
},
810
"author": "Textalk",
11+
"contributors": [
12+
"David Jensen <[email protected]> (https://github.com/davidlgj)",
13+
"Cameron Edwards (https://github.com/cameronprattedwards)",
14+
"Mike Marcacci <[email protected]> (https://github.com/mike-marcacci)",
15+
"Denis Dervisevic <[email protected]> (https://github.com/Dervisevic)",
16+
],
917
"license": "MIT",
18+
"dependencies": {
19+
"angular": ">= 1.2",
20+
"tv4": "~1.0.15",
21+
"angular-sanitize": ">= 1.2",
22+
"objectpath": "~1.1.0"
23+
},
24+
"keywords": [
25+
"angular",
26+
"angularjs",
27+
"form",
28+
"json",
29+
"json-schema",
30+
"schema"
31+
],
1032
"devDependencies": {
1133
"chai": "^1.9.0",
1234
"coveralls": "^2.11.0",
@@ -29,4 +51,10 @@
2951
"sinon-chai": "^2.5.0",
3052
"streamqueue": "0.0.5"
3153
}
32-
}
54+
},
55+
"licenses": [
56+
{
57+
"type": "MIT",
58+
"url": "https://raw.githubusercontent.com/Textalk/angular-schema-form/master/LICENSE"
59+
}
60+
]

0 commit comments

Comments
 (0)