-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.2 KB
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
{
"name": "ionic4-date-picker",
"version": "0.1.1",
"description": "ionic4 date picker module",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"ngc": "ngc",
"build": "rm -r dist && npm run ngc",
"publishPackage": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/write2sv/ionic4-date-picker"
},
"keywords": [
"ionic4",
"datepicker",
"calendar",
"component"
],
"author": "Venkata Surya Sagi",
"license": "MIT",
"devDependencies": {
"@angular/common": "9.0.0",
"@angular/compiler": "9.0.0",
"@angular/compiler-cli": "9.0.0",
"@angular/core": "9.0.0",
"@angular/forms": "9.0.0",
"@angular/platform-browser": "9.0.0",
"@angular/platform-browser-dynamic": "9.0.0",
"@types/node": "13.7.6",
"rxjs": "6.5.4",
"typescript": "3.7.5",
"zone.js": "0.10.2",
"@ionic/angular": "5.0.1",
"@angular/router": "9.0.0"
},
"dependencies": {
"dayspan": "0.12.5",
"moment": "2.24.0"
}
}