generated from Bwca/template_ts-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "@merry-solutions/typed-date-converter",
"version": "1.0.0",
"description": "This package provides an approach for converting primitives to object date types and vice versa, with automatic type conversion, eliminating the need to create new interfaces in typescript or using generics for date typing.",
"main": "./dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/**"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"build": "tsup src/index.ts --minify --dts",
"dev": "nodemon",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"bin": "",
"keywords": [
"date", "conversion", "typescript", "converter", "type", "types"
],
"author": {
"name": "Volodymyr Yepishev",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bwca/package__merry-solutions__typed-date-converter.git"
},
"bugs": {
"url": "https://github.com/Bwca/package__merry-solutions__typed-date-converter/issues"
},
"homepage": "https://github.com/Bwca/package__merry-solutions__typed-date-converter#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"iso-datestring-validator": "^2.2.2",
"jest": "^27.1.4",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.1",
"tsup": "^5.12.6",
"typescript": "^4.6.4"
},
"dependencies": {}
}