Skip to content

Commit c9fdaab

Browse files
committed
Merge pull request #202 from Textalk/feature/packageManagment
Updates to the package management
2 parents 8e8cb1a + 4c13db1 commit c9fdaab

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/.*

bower.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"version": "0.7.7",
88
"authors": [
99
"Textalk",
10-
"David Jensen <david.lgj@gmail.com>"
10+
"David Jensen <david.lgj@gmail.com>",
11+
"Cameron Edwards",
12+
"Mike Marcacci",
13+
"Denis Dervisevic <denis@dervisevic.se>"
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

Lines changed: 29 additions & 1 deletion
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 <david.lgj@gmail.com> (https://github.com/davidlgj)",
13+
"Cameron Edwards (https://github.com/cameronprattedwards)",
14+
"Mike Marcacci (https://github.com/mike-marcacci)",
15+
"Denis Dervisevic <denis@dervisevic.se> (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",
@@ -28,5 +50,11 @@
2850
"sinon": "^1.9.0",
2951
"sinon-chai": "^2.5.0",
3052
"streamqueue": "0.0.5"
53+
},
54+
"licenses": [
55+
{
56+
"type": "MIT",
57+
"url": "https://raw.githubusercontent.com/Textalk/angular-schema-form/master/LICENSE"
3158
}
59+
]
3260
}

0 commit comments

Comments
 (0)