1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "pretty-time",
- "description": "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.",
- "version": "1.1.0",
- "homepage": "https://github.com/jonschlinkert/pretty-time",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "repository": "jonschlinkert/pretty-time",
- "bugs": {
- "url": "https://github.com/jonschlinkert/pretty-time/issues"
- },
- "license": "MIT",
- "files": [
- "index.js",
- "utils.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=4"
- },
- "scripts": {
- "test": "mocha"
- },
- "devDependencies": {
- "gulp-format-md": "^1.0.0",
- "mocha": "^3.5.3"
- },
- "keywords": [
- "convert",
- "date",
- "format",
- "formatting",
- "hour",
- "hrtime",
- "micro",
- "milli",
- "minute",
- "nano",
- "nanosecond",
- "pretty",
- "second",
- "time",
- "week"
- ],
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "related": {
- "list": [
- "o-clock",
- "seconds",
- "time-stamp",
- "timescale",
- "week",
- "weekday",
- "year"
- ]
- },
- "lint": {
- "reflinks": true
- }
- }
- }
|