-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "wc-datepicker",
"version": "0.6.0",
"description": "A small, accessible and customizable datepicker written in TypeScript.",
"repository": {
"type": "git",
"url": "https://github.com/Sqrrl/wc-datepicker.git"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"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/wc-datepicker/wc-datepicker.esm.js",
"files": [
"dist/"
],
"scripts": {
"build": "yarn build:stencil && yarn build:docs",
"build:stencil": "stencil build",
"build:docs": "rimraf docs-www && copyfiles -u 1 docs/* docs/**/* dist/themes/* docs-www && copyfiles dist/esm/* docs-www && node terser.js",
"start": "yarn start:stencil ",
"start:stencil": "stencil build --dev --watch --serve",
"start:docs": "concurrently --kill-others \"npm-watch build:docs\" \"serve docs-www\"",
"test": "TZ=UTC stencil test --spec",
"test:watch": "TZ=UTC stencil test --spec --watchAll",
"generate": "stencil generate",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build:stencil && changeset publish"
},
"watch": {
"build:docs": {
"extensions": "*",
"patterns": [
"docs"
]
}
},
"dependencies": {
"@stencil/core": "^2.13.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@stencil/postcss": "^2.1.0",
"@types/jest": "^27.0.3",
"autoprefixer": "^10.4.12",
"concurrently": "^7.5.0",
"copyfiles": "^2.4.1",
"glob": "^8.0.3",
"jest": "^27.0.3",
"jest-cli": "^27.4.5",
"npm-watch": "^0.11.0",
"postcss-nested": "^6.0.0",
"rimraf": "^3.0.2",
"serve": "^14.0.1",
"terser": "^5.15.1"
},
"license": "MIT"
}