-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
{
"author": "Bruno Peralva <brunoperalva@hotmail.com>",
"bugs": {
"url": "https://github.com/peralva/custom-date/issues"
},
"description": "Custom Date",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@peralva/prettier-config": "^1.0.15",
"@peralva/tsconfig": "^1.0.5",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib/index.d.ts",
"lib/index.js",
"lib/index.mjs"
],
"homepage": "https://github.com/peralva/custom-date#readme",
"keywords": [
"date",
"mask",
"string"
],
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.mjs",
"name": "@peralva/custom-date",
"prettier": "@peralva/prettier-config",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peralva/custom-date.git"
},
"scripts": {
"build": "rollup --config",
"build:dev": "tsc --outDir ./dist/ --sourceMap true --watch",
"build:test": "tsc --outDir ./dist/",
"start": "node --enable-source-maps --inspect --trace-warnings --watch dist",
"test": "node --test dist"
},
"version": "1.0.2"
}