-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "@sineverba/date-convert",
"version": "2.3.0",
"description": "Convert a date from / to ISO format YYYYMMDD to human readable format (DD/MM/YYYY)",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sineverba/npm-pkg-date-convert.git"
},
"scripts": {
"build": "tsc",
"test": "jest --watch",
"coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json",
"prettier": "prettier -c \"src/**/*.ts\"",
"fixprettier": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"engines": {
"node": ">=12"
},
"keywords": [
"npm",
"package",
"date",
"format"
],
"author": "[email protected]",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"moment": "^2.30.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"coveralls": "^3.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-cucumber": "^3.0.1",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*"
]
}