Skip to content

Commit 02da61e

Browse files
committed
Added initial package.json and bower.json files.
1 parent 83c73aa commit 02da61e

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

bower.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "angular-datetime-input",
3+
"version": "0.1.3",
4+
"authors": [
5+
"Gleb <git@gleb.nl>"
6+
],
7+
"description": "UI widget for datetime input, converted to an angular directive for your convenience.",
8+
"main": [
9+
"dist/datetime-input.js",
10+
"dist/datetime-input.css"
11+
],
12+
"moduleType": [],
13+
"keywords": [
14+
"angular",
15+
"angularjs",
16+
"directive",
17+
"date",
18+
"time",
19+
"datetime",
20+
"input",
21+
"dateinput",
22+
"timeinput"
23+
],
24+
"license": "MIT",
25+
"homepage": "https://github.com/g1eb/angular-datetime-input",
26+
"ignore": [
27+
"**/.*",
28+
"node_modules",
29+
"bower_components",
30+
"test",
31+
"tests"
32+
],
33+
"dependencies": {
34+
"angular": "^1.5.6",
35+
"moment": "^2.13.0"
36+
}
37+
}

package.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "angular-datetime-input",
3+
"version": "0.1.3",
4+
"description": "UI widget for datetime input, converted to an angular directive for your convenience.",
5+
"main": "index.js",
6+
"dependencies": {},
7+
"devDependencies": {
8+
"angular": "^1.5.6",
9+
"gulp": "^3.9.1",
10+
"gulp-angular-embed-templates": "^2.2.0",
11+
"gulp-cssnano": "^2.1.2",
12+
"gulp-uglify": "^1.5.3",
13+
"moment": "^2.13.0"
14+
},
15+
"scripts": {
16+
"build": "gulp build"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "git+https://github.com/g1eb/angular-datetime-input.git"
21+
},
22+
"keywords": [
23+
"angular",
24+
"angularjs",
25+
"directive",
26+
"date",
27+
"time",
28+
"datetime",
29+
"input",
30+
"picker",
31+
"dateinput",
32+
"timeinput"
33+
],
34+
"author": "Gleb <git@gleb.nl>",
35+
"license": "MIT",
36+
"bugs": {
37+
"url": "https://github.com/g1eb/angular-datetime-input/issues"
38+
},
39+
"homepage": "https://github.com/g1eb/angular-datetime-input#readme"
40+
}

0 commit comments

Comments
 (0)