UNPKG

nepali-date-converter

Version:

A small Javascript/Typescript Library to convert English Date to Nepali and Vice Versa.

136 lines (135 loc) 3.55 kB
{ "name": "nepali-date-converter", "version": "3.4.0", "description": "", "keywords": [ "nepali", "nepali-date", "nepali-date-converter", "date-converter", "ad-bs", "ad-to-bs", "bs-ad", "bikram-sambat", "typescript", "javascript", "BS date", "AD to BS", "Bikram Sambat Calendar" ], "main": "dist/nepali-date-converter.umd.js", "module": "dist/nepali-date-converter.es5.js", "typings": "dist/types/nepali-date-converter.d.ts", "files": [ "dist" ], "author": "Subesh Bhandari <subeshb1@gmail.com>", "repository": { "type": "git", "url": "https://github.com/subeshb1/Nepali-Date" }, "license": "MIT", "engines": { "node": ">=6.0.0" }, "scripts": { "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'", "prebuild": "rimraf dist", "build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs src/nepali-date-converter.ts", "start": "rollup -c rollup.config.ts -w", "test": "jest", "test-coverage": "jest", "test:watch": "jest --coverage --watch", "test:prod": "npm run lint && npm run test-coverage -- --no-cache", "deploy-docs": "ts-node tools/gh-pages-publish", "report-coverage": "cat ./coverage/lcov.info | coveralls", "commit": "git-cz", "semantic-release": "semantic-release", "semantic-release-prepare": "ts-node tools/semantic-release-prepare", "precommit": "lint-staged", "prepush": "npm run test:prod && npm run build", "commitmsg": "commitlint -E HUSKY_GIT_PARAMS" }, "lint-staged": { "{src,test}/**/*.ts": [ "prettier --write", "git add" ] }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" } }, "jest": { "transform": { ".(ts|tsx)": "ts-jest" }, "testEnvironment": "node", "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "tsx", "js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/test/" ], "coverageThreshold": { "global": { "branches": 90, "functions": 95, "lines": 95, "statements": 95 } }, "collectCoverageFrom": [ "src/*.{js,ts}" ] }, "prettier": { "semi": false, "singleQuote": true }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "devDependencies": { "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", "@types/jest": "^28.1.6", "@types/node": "^18.6.3", "colors": "^1.4.0", "commitizen": "^4.2.5", "coveralls": "^3.1.1", "cross-env": "^7.0.3", "cz-conventional-changelog": "^3.3.0", "husky": "^8.0.1", "jest": "^28.1.3", "jest-config": "^28.1.3", "lint-staged": "^13.0.3", "lodash.camelcase": "^4.3.0", "prettier": "^2.7.1", "prompt": "^1.3.0", "replace-in-file": "^6.3.5", "rimraf": "^3.0.2", "rollup": "^2.77.2", "rollup-plugin-commonjs": "^9.1.8", "rollup-plugin-json": "^3.1.0", "rollup-plugin-node-resolve": "^3.4.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-typescript2": "^0.32.1", "semantic-release": "^19.0.3", "shelljs": "^0.8.5", "ts-jest": "^28.0.7", "ts-node": "^10.9.1", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", "tslint-config-standard": "^8.0.1", "typedoc": "^0.25.12", "typescript": "^4.7.4" } }