-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "ion2-calendar",
"version": "3.5.0",
"description": "A date picker component for ionic2 ",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"start": "cd ./dev && npm start",
"clean:dist": "rm -rf dist",
"demo:link": "npm link && cd ./demo && npm link ion2-calendar",
"demo:serve": "cd ./demo && ionic serve",
"build": "run-s clean:dist build:copy-sources build:compile-scss build:ts",
"build:ts": "tsc && ngc",
"build:copy-sources": "gulp copy-sources",
"build:compile-scss": "gulp copy-scss && gulp rename-scss && gulp clean-scss",
"test": "echo \"Error: no test specified\"",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"packagr": "ng-packagr -p package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/HsuanXyz/ion2-calendar.git"
},
"devDependencies": {
"@angular/common": "7.1.4",
"@angular/compiler": "7.1.4",
"@angular/compiler-cli": "^7.2.9",
"@angular/core": "7.1.4",
"@angular/forms": "7.1.4",
"@angular/http": "7.1.4",
"@angular/platform-browser": "7.1.4",
"@angular/platform-browser-dynamic": "7.1.4",
"@angular/router": "7.1.4",
"@ionic/angular": "4.0.0-rc.0",
"gulp": "^4.0.0",
"gulp-bump": "^3.0.0",
"gulp-clean": "^0.4.0",
"gulp-ext-replace": "^0.3.0",
"gulp-sass": "^4.0.1",
"ionicons": "5.1.2",
"moment": "^2.23.0",
"ng-packagr": "^2.0.0",
"npm-run-all": "^4.1.2",
"rxjs": "6.3.3",
"tsickle": "^0.27.2",
"tslint": "~5.7.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "~3.1.3",
"zone.js": "0.8.26"
},
"keywords": [
"ionic2",
"calendar",
"Datepicker",
"date-range"
],
"author": "HsuanLee",
"license": "MIT",
"peerDependencies": {
"moment": "^2.19.3"
},
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts",
"styleIncludePaths": [
""
],
"umdModuleIds": {
"moment": "moment"
}
}
}
}