| { |
| "description": "Tiny millisecond conversion utility", |
| "devDependencies": { |
| "eslint": "4.12.1", |
| "expect.js": "0.3.1", |
| "husky": "0.14.3", |
| "lint-staged": "5.0.0", |
| "mocha": "4.0.1" |
| }, |
| "eslintConfig": { |
| "env": { |
| "es6": true, |
| "node": true |
| }, |
| "extends": "eslint:recommended" |
| }, |
| "files": [ |
| "index.js" |
| ], |
| "license": "MIT", |
| "lint-staged": { |
| "*.js": [ |
| "npm run lint", |
| "prettier --single-quote --write", |
| "git add" |
| ] |
| }, |
| "main": "./index", |
| "name": "ms", |
| "repository": "zeit/ms", |
| "scripts": { |
| "lint": "eslint lib/* bin/*", |
| "precommit": "lint-staged", |
| "test": "mocha tests.js" |
| }, |
| "version": "2.1.2" |
| } |