@langurama/log
Version:
Retardedly basic terminal and file logging for Node.js and the browser.
58 lines (57 loc) • 1.97 kB
JSON
{
"name": "@langurama/log",
"version": "1.1.2-rc1",
"description": "Retardedly basic terminal and file logging for Node.js and the browser.",
"author": "Karl Morrison <karl@langurama.com>",
"license": "MIT",
"keywords": [
"langurama",
"log",
"logging",
"retard"
],
"repository": {
"type": "git",
"url": "git@github.com:langurama/log.git"
},
"main": "./dist/",
"scripts": {
"lint": "npx eslint .",
"lint_fix": "npx eslint . --fix",
"style": "npx prettier --check \"./**/*.js\" --check \"./**/*.json\"",
"style_fix": "npx prettier --write \"./**/*.js\" --write \"./**/*.json\"",
"type": "npx tsc",
"test": "npx jest --verbose --coverage --color",
"build": "npx babel ./src/ -d ./dist/ --source-maps",
"dev": "nodemon",
"start_es": "npm run build && npx babel-node -- ./example/ecmascript.js",
"start_cjs": "npm run build && node ./example/commonjs.js",
"start_dev": "npx babel-node -- ./example/index.js --dev",
"check": "npm run lint && npm run style && npm test && npm run build && npm pack",
"pk": "npm pack --verbose",
"bump": "npm install",
"tag": "VER=v$(node -p \"require('./package.json').version\") && git tag -a \"$VER\" -m \"$VER\"",
"pub": "git push --tags && npm publish --access public --verbose"
},
"engines": {
"node": "12"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/preset-env": "7.9.5",
"chai": "4.2.0",
"chai-spies": "1.0.0",
"chalk": "2.4.2",
"cross-env": "7.0.2",
"eslint": "6.3.0",
"jest": "24.9.0",
"nodemon": "1.19.2",
"prettier": "1.18.2",
"shx": "0.3.2",
"typescript": "3.8.3",
"uuid": "8.0.0"
}
}