-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.75 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": "lit-date",
"version": "1.0.4",
"description": "Light-weight, faster datetime formatter for modern browsers",
"keywords": [
"date",
"datetime",
"format",
"formatter"
],
"repository": "git@github.com:3846masa/lit-date.git",
"license": "MIT",
"author": "3846masa <3846masahiro+git@gmail.com>",
"main": "lib/index.js",
"jsdelivr": "lib/index.umd.js",
"unpkg": "lib/index.umd.js",
"module": "lib/index.mjs",
"browser": "lib/index.umd.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "pnpm run clean",
"build": "pnpm run \"/^build:.*/\"",
"build:rollup": "rollup -c rollup.config.mjs",
"clean": "rimraf lib",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint src/",
"lint:prettier": "prettier --check src/",
"lint:tsc": "tsc --noEmit",
"prepublish": "pnpm run build",
"pretest": "pnpm run build",
"test": "pnpm run \"/^test:.*/\"",
"test:jest": "jest --coverage",
"test:size-limit": "size-limit"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#93c03e598725ca1bcf217b639a44bc33852c282f",
"@jest/globals": "29.7.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@size-limit/file": "11.1.6",
"@types/eslint": "9.6.1",
"jest": "29.7.0",
"rimraf": "5.0.10",
"rollup": "4.27.3",
"size-limit": "11.1.6",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"packageManager": "pnpm@9.14.2",
"size-limit": [
{
"path": "./lib/index.umd.js",
"limit": "1 kB"
}
]
}