leading-zeroes
Version:
Pad a number with leading zeroes
47 lines (46 loc) • 1.07 kB
JSON
{
"name": "leading-zeroes",
"version": "2.0.1",
"description": "Pad a number with leading zeroes",
"keywords": [
"number",
"pad",
"zero",
"zeroes"
],
"homepage": "https://github.com/brycehanscomb/leading-zeroes",
"issues": "https://github.com/brycehanscomb/leading-zeroes/issues",
"repository": {
"type": "git",
"url": "https://github.com/brycehanscomb/leading-zeroes.git"
},
"author": {
"name": "Bryce Hanscomb",
"email": "bryce@brycehanscomb.com",
"url": "https://brycehanscomb.com"
},
"license": "MIT",
"private": false,
"engines": {
"node": ">=4.9.1"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"prepublish": "npm run test && npm run build"
},
"files": [
"dist/"
]
}