This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
133 lines (133 loc) · 4.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "aurelia-form",
"version": "1.3.2-1",
"description": "Makes working with forms just a tad more pleasant.",
"keywords": [
"aurelia",
"bootstrap",
"component",
"components",
"custom components",
"form",
"forms",
"input",
"plugin",
"schema",
"translation"
],
"homepage": "https://github.com/SpoonX/aurelia-form",
"bugs": {
"url": "https://github.com/SpoonX/aurelia-form/issues"
},
"license": "MIT",
"author": "RWOverdijk <[email protected]> (http://spoonx.nl/)",
"contributors": [
"bas080 <[email protected]> (http://spoonx.nl)"
],
"main": "dist/commonjs/aurelia-form.js",
"typings": "dist/aurelia-form.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/SpoonX/aurelia-form"
},
"scripts": {
"test": "gulp test",
"build": "gulp build",
"preversion": "npm test",
"version": "npm run build && gulp prepare-package && git add -A dist doc/CHANGELOG.md bower.json",
"postpublish": "git push upstream master && git push upstream --tags"
},
"jspm": {
"registry": "npm",
"main": "aurelia-form",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"dependencies": {
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.3",
"aurelia-view-manager": "^0.1.0",
"extend": "^3.0.0",
"homefront": "^1.3.3"
},
"devDependencies": {
"aurelia-bootstrapper": "^1.0.0",
"aurelia-pal-browser": "^1.0.0",
"aurelia-polyfills": "^1.0.0",
"aurelia-testing": "^1.0.0-beta.1.0.3"
},
"jspmPackage": true,
"peerDependencies": {
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.3",
"aurelia-view-manager": "^0.1.0",
"extend": "^3.0.0",
"homefront": "^1.3.3"
}
},
"dependencies": {
"aurelia-dependency-injection": "^1.0.0",
"aurelia-framework": "^1.0.0",
"aurelia-logging": "^1.0.0",
"aurelia-metadata": "^1.0.3",
"aurelia-view-manager": "^0.1.0",
"extend": "^3.0.0",
"homefront": "^1.3.3"
},
"devDependencies": {
"spoonx-tools": "^1.0.0-0"
},
"aurelia": {
"build": {
"resources": [
"aurelia-form/attribute/prefixed",
"aurelia-form/component/aurelia-form",
"aurelia-form/component/entity-form",
"aurelia-form/component/form-association",
"aurelia-form/component/form-button",
"aurelia-form/component/form-checkbox",
"aurelia-form/component/form-element",
"aurelia-form/component/form-error",
"aurelia-form/component/form-group",
"aurelia-form/component/form-help",
"aurelia-form/component/form-input",
"aurelia-form/component/form-label",
"aurelia-form/component/form-radio",
"aurelia-form/component/form-select",
"aurelia-form/component/form-textarea",
"aurelia-form/decorator/autofocus",
"aurelia-form/decorator/disabled",
"aurelia-form/decorator/element",
"aurelia-form/decorator/field",
"aurelia-form/decorator/index",
"aurelia-form/decorator/inputType",
"aurelia-form/decorator/label",
"aurelia-form/decorator/noRender",
"aurelia-form/decorator/options",
"aurelia-form/decorator/placeholder",
"aurelia-form/decorator/position",
"aurelia-form/decorator/readonly",
"aurelia-form/decorator/required",
"aurelia-form/component/view/bootstrap/aurelia-form.html",
"aurelia-form/component/view/bootstrap/entity-form.html",
"aurelia-form/component/view/bootstrap/form-association.html",
"aurelia-form/component/view/bootstrap/form-button.html",
"aurelia-form/component/view/bootstrap/form-checkbox.html",
"aurelia-form/component/view/bootstrap/form-element.html",
"aurelia-form/component/view/bootstrap/form-error.html",
"aurelia-form/component/view/bootstrap/form-group.html",
"aurelia-form/component/view/bootstrap/form-help.html",
"aurelia-form/component/view/bootstrap/form-input.html",
"aurelia-form/component/view/bootstrap/form-label.html",
"aurelia-form/component/view/bootstrap/form-radio.html",
"aurelia-form/component/view/bootstrap/form-select.html",
"aurelia-form/component/view/bootstrap/form-textarea.html"
]
}
}
}