@kermank/nldp
Version:
A modular date/time parser for converting natural language into dates and times
66 lines (65 loc) • 1.68 kB
JSON
{
"name": "@kermank/nldp",
"version": "1.3.0",
"description": "A modular date/time parser for converting natural language into dates and times",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run test && npm run build",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public"
},
"keywords": [
"date",
"parser",
"time",
"natural-language",
"datetime",
"date-parser",
"time-parser"
],
"author": "Kerman Kohli",
"repository": {
"type": "git",
"url": "git+https://github.com/kermankohli/natural-language-date-parser.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"luxon": "^3.5.0",
"uuid": "^11.0.5",
"winston": "^3.17.0"
},
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/kermankohli/natural-language-date-parser/issues"
},
"homepage": "https://github.com/kermankohli/natural-language-date-parser#readme"
}