UNPKG

time-number

Version:

Converts time representation from string to number or from number to string

51 lines (50 loc) 1.5 kB
{ "name": "time-number", "version": "1.1.0", "keywords": [ "time", "timeFromInt", "timeToInt" ], "description": "Converts time representation from string to number or from number to string", "main": "dist/time-number.js", "homepage": "https://github.com/yury-dymov/time-number.git", "author": { "name": "Yuri Dymov", "email": "yuri@dymov.me" }, "repository": { "type": "git", "url": "https://github.com/yury-dymov/time-number.git" }, "scripts": { "build": "npm run clean && npm run build:lib && npm run build:umd", "build:lib": "BABEL_ENV=production ./node_modules/.bin/babel src -d lib", "build:umd": "node_modules/.bin/webpack --config webpack.config.prod.js", "lint": "./node_modules/.bin/eslint src", "clean": "./node_modules/.bin/rimraf dist && rimraf lib && rimraf coverage", "test": "./node_modules/.bin/jest" }, "license": "MIT", "devDependencies": { "babel-cli": "^6.14.0", "babel-core": "^6.9.0", "babel-eslint": "^6.1.2", "babel-loader": "^6.2.4", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-0": "^6.5.0", "eslint": "^3.5.0", "eslint-config-airbnb": "^11.1.0", "eslint-loader": "^1.5.0", "eslint-plugin-import": "^1.15.0", "eslint-plugin-jsx-a11y": "^2.2.2", "eslint-plugin-react": "^6.2.1", "jest": "^15.1.1", "rimraf": "^2.5.2", "webpack": "^1.13.1" }, "jest": { "coverageDirectory": "./coverage/", "collectCoverage": true } }