-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "@uiw/formatter",
"version": "2.0.2",
"description": "Get a formatted date.",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "dist/formatter.js",
"typings": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./README.md": {
"import": "./README.md",
"require": "./README.md"
}
},
"scripts": {
"prepare": "npm run build",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"start": "rollup -c rollup.config.ts --configPlugin typescript -w"
},
"files": [
"src",
"cjs",
"esm",
"dist"
],
"keywords": [
"date-formatter",
"formatter",
"date",
"uiw"
],
"author": "Kenny Wang <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/date-formatter.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.0",
"bannerjs": "^3.0.1",
"jest": "^29.4.3",
"rollup": "^3.20.2",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
}
}