59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "date-and-time",
|
|
"version": "3.6.0",
|
|
"description": "A Minimalist DateTime utility for Node.js and the browser",
|
|
"main": "date-and-time.js",
|
|
"module": "esm/date-and-time.es.js",
|
|
"types": "date-and-time.d.ts",
|
|
"unpkg": "date-and-time.min.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./date-and-time.d.ts",
|
|
"import": "./esm/date-and-time.mjs",
|
|
"require": "./date-and-time.js",
|
|
"browser": "./esm/date-and-time.es.js"
|
|
},
|
|
"./locale/*": {
|
|
"types": "./locale/*.d.ts",
|
|
"import": "./esm/locale/*.mjs",
|
|
"require": "./locale/*.js",
|
|
"browser": "./esm/locale/*.es.js"
|
|
},
|
|
"./plugin/*": {
|
|
"types": "./plugin/*.d.ts",
|
|
"import": "./esm/plugin/*.mjs",
|
|
"require": "./plugin/*.js",
|
|
"browser": "./esm/plugin/*.es.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"test": "./test.sh",
|
|
"test:ts": "tsd ./test/ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/knowledgecode/date-and-time.git"
|
|
},
|
|
"keywords": [
|
|
"date",
|
|
"time",
|
|
"format",
|
|
"parse",
|
|
"utility"
|
|
],
|
|
"author": "KNOWLEDGECODE",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/knowledgecode/date-and-time/issues"
|
|
},
|
|
"homepage": "https://github.com/knowledgecode/date-and-time",
|
|
"devDependencies": {
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"expect.js": "^0.3.1",
|
|
"mocha": "^10.7.3",
|
|
"rollup": "^4.22.5",
|
|
"tsd": "^0.31.2"
|
|
}
|
|
}
|