UNPKG

@langurama/checker

Version:

Retardedly basic checking for Node.js and the browser.

58 lines (57 loc) 1.95 kB
{ "name": "@langurama/checker", "version": "2.0.0-rc1", "description": "Retardedly basic checking for Node.js and the browser.", "author": "Karl Morrison <karl@langurama.com>", "license": "MIT", "keywords": [ "langurama", "runtime", "type", "check", "checking", "retard" ], "repository": { "type": "git", "url": "git@github.com:langurama/checker.git" }, "main": "./dist/", "scripts": { "precommit": "npm run style:check && npm run lint:check && npm run type && npm test && npm run build", "build": "npx babel ./src/ -d ./dist/ --source-maps", "style:check": "npx prettier --check \"./**/*.js\" --check \"./**/*.json\"", "style:fix": "npx prettier --write \"./**/*.js\" --write \"./**/*.json\"", "lint:check": "npx eslint .", "lint:fix": "npx eslint . --fix", "type": "npx tsc", "test": "npx jest --verbose --coverage --color", "dev": "nodemon", "start:es": "npm run build && npx babel-node -- ./example/ecmascript.js", "start:cjs": "npm run build && node ./example/commonjs.js", "bump": "npm install", "tag": "VER=v$(node -p \"require('./package.json').version\") && git tag -a \"$VER\" -m \"$VER\"", "prepub": "npm run precommit && npm pack --verbose && npm run tag", "pub": "git push --tags && npm publish --access public --verbose" }, "precommit": [ "precommit" ], "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", "cross-env": "7.0.2", "eslint": "6.3.0", "jest": "24.9.0", "nodemon": "1.19.2", "pre-commit": "1.2.2", "prettier": "1.18.2", "typescript": "3.8.3" } }