This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
Tyme.js/package.json

37 lines
847 B
JSON
Raw Normal View History

{
"name": "tymejs",
2022-05-08 10:23:49 +03:00
"version": "0.4.3",
"description": "Quickly and easily format JavaScript date Objects",
2022-05-07 15:10:36 +03:00
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
2022-05-07 15:04:19 +03:00
"build": "tsc",
"buildweb": "esbuild src/index.ts --bundle --minify --sourcemap --target=chrome58,firefox57,safari11,edge16 --outfile=dist/tyme.js",
"test": "jest --config jestconfig.json"
},
"keywords": [
"time",
2022-05-08 10:23:26 +03:00
"time format",
"date",
2022-05-08 10:23:26 +03:00
"date format",
"datetime",
"datetime format",
"format"
],
"author": "Kato Twofold",
"license": "MIT",
"repository": {
"url": "https://github.com/JustKato/Tyme.js"
2022-05-07 14:35:15 +03:00
},
2022-05-07 15:04:19 +03:00
"devDependencies": {
"@types/jest": "^27.5.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.1",
2022-05-07 15:18:48 +03:00
"typescript": "^4.6.4",
"ts-node": "^10.7.0"
2022-05-07 15:04:19 +03:00
},
"files": [
"lib/**/*"
]
2022-05-07 14:35:15 +03:00
}