ts-military-to-standard-time
Version:
A small package that can help assist with converting a military time string to civilian time.
47 lines (46 loc) • 1.32 kB
JSON
{
"name": "ts-military-to-standard-time",
"version": "1.0.2",
"description": "A small package that can help assist with converting a military time string to civilian time.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connor-dean/ts-military-to-standard-time.git"
},
"keywords": [
"Military",
"Standard",
"Hours",
"Conversion"
],
"author": "Connor Dean",
"license": "ISC",
"bugs": {
"url": "https://github.com/connor-dean/ts-military-to-standard-time/issues"
},
"homepage": "https://github.com/connor-dean/ts-military-to-standard-time#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.2.0",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}