@nisarg99/timeconvertion-js
Version:
A NPM package that exports functions to convert miliseconds to timestring ( hh:mm:ss ) and convert timestring to milliseconds.
47 lines (46 loc) • 1.2 kB
JSON
{
"name": "@nisarg99/timeconvertion-js",
"version": "0.1.0",
"description": "A NPM package that exports functions to convert miliseconds to timestring ( hh:mm:ss ) and convert timestring to milliseconds.",
"main": "build/index.js",
"scripts": {
"build": "babel ./src -d ./lib",
"lint": "eslint ./src",
"test": "nyc mocha --require babel-core/register",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nisarg43/TimeConversion-Js.git"
},
"keywords": [
"npm",
"node",
"timestring",
"secondstotimestring",
"microsecondstotimestring",
"dateconvert",
"javascript"
],
"author": "Nisarg Dewang",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nisarg43/TimeConversion-Js/issues"
},
"homepage": "https://github.com/Nisarg43/TimeConversion-Js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}