timeperiodjs
Version:
Time Period Library
61 lines (60 loc) • 1.49 kB
JSON
{
"name": "timeperiodjs",
"version": "0.0.9",
"description": "Time Period Library",
"scripts": {
"test": "mocha -r ts-node/register ./test/**/*.unit.ts",
"tsc": "tsc",
"lint": "eslint \"./dev/**/*.ts\" --quiet --fix",
"format": "prettier --config .prettierrc.js \"./dev/**/*.ts\" --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix"
]
},
"keywords": [
"time",
"date",
"period",
"timemanagement",
"moment"
],
"files": [
"dist/**/*"
],
"homepage": "https://github.com/szygendaborys/timeperiodjs.git",
"repository": {
"type": "git",
"url": "https://github.com/szygendaborys/timeperiodjs.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Borys Szygenda",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}