date-input-control
Version:
Capture dates using day, month and year components
45 lines (44 loc) • 995 B
JSON
{
"name": "date-input-control",
"version": "0.1.0",
"description": "Capture dates using day, month and year components",
"main": "index.js",
"scripts": {
"build:watch": "nodemon",
"build": "tsc",
"clean": "rimraf \"**.{js,d.ts}\"",
"prepare": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/j-/date-input-control.git"
},
"keywords": [
"date",
"field",
"component",
"auto",
"focus",
"react",
"dom"
],
"author": "Jamie Hoeks <j@skeoh.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/j-/date-input-control/issues"
},
"homepage": "https://github.com/j-/date-input-control#readme",
"devDependencies": {
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "npm run build",
"ext": "ts"
}
}