-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 963 Bytes
/
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
{
"name": "dt-formatter",
"version": "1.0.0",
"type": "commonjs",
"description": "A module designed to streamline the process of formatting Date() timestamps into human-readable date and time representations.",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dukeofhazardz/dt-formatter.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Nnaemeka Daniel John",
"license": "MIT",
"files": ["dist", "LICENSE", "README.md", "package.json"],
"bugs": {
"url": "https://github.com/dukeofhazardz/dt-formatter/issues"
},
"homepage": "https://github.com/dukeofhazardz/dt-formatter#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}