forked from fymmot/inclusive-dates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "inclusive-dates",
"version": "0.1.10",
"description": "A small, accessible datepicker Web Component with natural language date input.",
"repository": {
"type": "git",
"url": "https://github.com/fymmot/inclusive-dates"
},
"keywords": [
"datepicker",
"calendar",
"accessibility",
"wai-aria",
"web component",
"inclusive design",
"vanilla-js",
"natural language",
"chrono.js"
],
"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/inclusive-dates/inclusive-dates.esm.js",
"files": [
"dist/"
],
"scripts": {
"build": "yarn build:stencil && yarn build:docs",
"build:stencil": "yarn sass && stencil build",
"build:docs": "rimraf docs-www && copyfiles -u 1 docs/* docs/**/* dist/themes/* docs-www && copyfiles dist/esm/* docs-www && node terser.js",
"prettier": "prettier --write .",
"start": "yarn start:stencil",
"start2": "concurrently --kill-others \"yarn sass:watch\" \"stencil build --dev --watch --serve\"",
"start:stencil": "stencil build --dev --watch --serve",
"start:docs": "concurrently --kill-others \"npm-watch build:docs\" \"serve docs-www\"",
"test": "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",
"prepare": "husky install",
"sass:watch": "sass src/themes/base.scss:src/themes/base.css src/themes/dark.scss:src/themes/dark.css src/themes/light.scss:src/themes/light.css --watch --style compressed",
"sass": "sass src/themes/dark.scss:src/themes/dark.css src/themes/light.scss:src/themes/light.css --style compressed"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write"
]
},
"watch": {
"build:docs": {
"extensions": "*",
"patterns": [
"docs"
]
}
},
"dependencies": {
"@stencil/core": "^2.13.0",
"@stencil/sass": "^3.0.0",
"@a11y/focus-trap": "^1.0.5",
"@react-aria/live-announcer": "^3.1.2",
"aria-hidden": "^1.2.2",
"chrono-node": "^2.5.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",
"husky": "^8.0.3",
"jest": "^27.0.3",
"jest-cli": "^27.4.5",
"lint-staged": "^13.1.0",
"npm-watch": "^0.11.0",
"postcss-nested": "^6.0.0",
"prettier": "2.8.4",
"rimraf": "^4.1.2",
"sass": "^1.57.1",
"serve": "^14.0.1",
"terser": "^5.15.1"
},
"license": "MIT"
}