41 lines
850 B
JSON
Raw Normal View History

2023-12-13 14:12:13 +08:00
{
"name": "ms",
2025-03-21 15:55:33 +08:00
"version": "2.1.3",
2023-12-13 14:12:13 +08:00
"description": "Tiny millisecond conversion utility",
2025-03-21 15:55:33 +08:00
"repository": "vercel/ms",
2023-12-13 14:12:13 +08:00
"main": "./index",
"files": [
"index.js"
],
"scripts": {
"precommit": "lint-staged",
"lint": "eslint lib/* bin/*",
"test": "mocha tests.js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --write",
"git add"
]
},
"license": "MIT",
"devDependencies": {
2025-03-21 15:55:33 +08:00
"eslint": "4.18.2",
2023-12-13 14:12:13 +08:00
"expect.js": "0.3.1",
"husky": "0.14.3",
"lint-staged": "5.0.0",
2025-03-21 15:55:33 +08:00
"mocha": "4.0.1",
"prettier": "2.0.5"
},
"__npminstall_done": true,
"_from": "ms@2.1.3",
"_resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz"
2023-12-13 14:12:13 +08:00
}