monthly
Version:
A simplified way to show a calendar month in any console.
85 lines (84 loc) • 2.01 kB
JSON
{
"version": "0.6.7",
"bin": "cli/monthly.js",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "min.js",
"scripts": {
"$": "npm-dollar",
"build": "npm run $ build",
"bundle": "npm run $ bundle",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"deploy": "git push && git push --tags && npm publish",
"test": "npm run $ test"
},
"$": {
"bundle": {
"cjs": [
"echo \"'use strict';\" > cjs/index.js",
"cat index.js >> cjs/index.js",
"echo 'module.exports = monthly;' >> cjs/index.js"
],
"esm": [
"cp index.js esm/index.js",
"echo 'export default monthly;' >> esm/index.js"
],
"min": [
[
"echo \"/*! (c) Andrea Giammarchi (ISC) */$(",
"uglifyjs index.js --support-ie8 --comments=/^!/ -c -m",
")\" > min.js"
]
]
},
"build": [
"$ bundle.cjs",
"$ bundle.esm",
"$ bundle.min",
"$ test",
"$ size"
],
"size": {
"gzip": [
[
"cat index.js |",
"wc -c;cat min.js |",
"wc -c;gzip -c9 min.js |",
"wc -c"
]
],
"brotli": "cat min.js | brotli | wc -c"
},
"test": [
"node test/holidays.js && istanbul cover test/index.js"
]
},
"name": "monthly",
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"npm-dollar": "^0.1.3",
"uglify-js": "^3.4.7"
},
"keywords": [
"calendar",
"month",
"console",
"graphical",
"gregorian"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"description": "A simplified way to show a calendar month in any console.",
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/monthly.git"
},
"bugs": {
"url": "https://github.com/WebReflection/monthly/issues"
},
"homepage": "https://github.com/WebReflection/monthly#readme",
"dependencies": {
"commander": "^2.17.1"
}
}