forked from hsuanxyz/ion2-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "ion2-calendar",
"version": "2.1.7",
"description": "A date picker component for ionic2 ",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"start": "cd ./dev && ionic serve",
"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:ts && gulp copy-scss ",
"build:ts": "tsc && ngc",
"build:copy-sources": "gulp copy-sources",
"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": "4.4.6",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "4.4.6",
"@angular/forms": "4.4.6",
"@angular/http": "4.4.6",
"@angular/platform-browser": "4.4.6",
"@angular/platform-browser-dynamic": "4.4.6",
"gulp": "^3.9.1",
"gulp-bump": "^3.0.0",
"ionic-angular": "3.7.1",
"ionicons": "~3.0.0",
"moment": "^2.19.1",
"ng-packagr": "^2.0.0",
"npm-run-all": "^4.1.2",
"rxjs": "5.5.2",
"tsickle": "^0.27.2",
"tslint": "~5.7.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.3",
"zone.js": "0.8.18"
},
"keywords": [
"ionic2",
"calendar",
"Datepicker",
"date-range"
],
"author": "HsuanLee",
"license": "MIT",
"dependencies": {
"moment": "^2.19.3"
},
"$schema": "./node_modules/ng-packagr/package.schema.json",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts",
"styleIncludePaths": [""],
"umdModuleIds": {
"moment": "moment"
}
}
}
}