This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "@codaline-io/ionic-datepicker",
"version": "0.3.5",
"description": "A datepicker component for ionic",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/ionic-datepicker/ionic-datepicker.js",
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"prepublishOnly": "yarn build",
"build:deploy": "yarn build && cp ./src/index.html ./dist && gh-pages -d ./dist"
},
"devDependencies": {
"@ionic/core": "^5.9.2",
"@stencil/core": "^1.17.3",
"@types/jest": "^24.2.1",
"@types/puppeteer": "2.0.1",
"gh-pages": "^2.2.0",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"js-datepicker": "^5.18.0",
"puppeteer": "2.1.1"
},
"peerDependencies": {
"@ionic/core": "^5.1.1",
"js-datepicker": "^5.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codaline-io/ionic-datepicker.git"
},
"author": "Marcus Kirsch & Bengt Weiße GbR (codaline)",
"bugs": {
"url": "https://github.com/codaline-io/ionic-datepicker"
},
"homepage": "https://github.com/codaline-io/ionic-datepicker",
"license": "MIT",
"keywords": [
"ionic",
"datepicker",
"js-datepicker",
"desktop",
"mobile",
"date",
"picker",
"stencil",
"web-component",
"webcomponent",
"component",
"browser"
]
}