-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 919 Bytes
/
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
{
"name": "@manuschillerdev/cathly",
"version": "1.0.0-rc1",
"repository": "https://github.com/manuschillerdev/cathly",
"description": "Tiny (<200b) tool as basis for calendars and datepickers",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"author": "Manu Schiller",
"license": "MIT",
"scripts": {
"build": "microbundle",
"build-and-publish": "yarn build && yarn bundlesize && npm publish",
"format": "prettier src/**/*.ts --write",
"bundlesize": "bundlesize"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"bundlesize": "^0.18.0",
"microbundle": "^0.12.0",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "200 b",
"compression": "brotli"
}
]
}