UNPKG

charades-keywords

Version:
105 lines 2.68 kB
{ "name": "charades-keywords", "version": "0.3.0", "description": "Get random charades keywords", "main": "dist/index.js", "scripts": { "commit": "git-cz", "prebuild": "rimraf dist", "build": "npm-run-all --parallel build:*", "build:main": "babel --copy-files --out-dir dist --ignore *.test.js src", "build:umd": "webpack --output-filename index.umd.js", "build:umd.min": "webpack --output-filename index.umd.min.js -p", "test": "cross-env NODE_ENV=test nyc mocha", "watch:test": "mocha --require babel-register --watch", "lint": "eslint src", "report-coverage": "cat ./coverage/lcov.info | codecov", "release": "semantic-release pre && npm publish && semantic-release post", "validate": "npm-run-all --parallel test lint build" }, "repository": { "type": "git", "url": "https://github.com/theCybulski/charades-keywords.git" }, "keywords": [ "random", "kalambury", "charades", "pictionary" ], "files": [ "dist", "README.md" ], "author": "Dariusz Cybulski <hello@thecybulski.com> (http://thecybulski.com/)", "license": "MIT", "bugs": { "url": "https://github.com/theCybulski/charades-keywords/issues" }, "homepage": "https://github.com/theCybulski/charades-keywords#readme", "devDependencies": { "babel-cli": "6.11.4", "babel-loader": "6.2.4", "babel-plugin-istanbul": "1.0.3", "babel-preset-es2015": "6.9.0", "babel-register": "6.11.6", "chai": "3.5.0", "codecov": "3.8.1", "commitizen": "2.8.2", "cross-env": "2.0.0", "cz-conventional-changelog": "1.1.6", "eslint": "3.2.0", "eslint-config-kentcdodds": "^9.0.0", "ghooks": "1.3.2", "json-loader": "0.5.4", "mocha": "3.0.0", "npm-run-all": "2.3.0", "nyc": "7.1.0", "opt-cli": "1.5.1", "rimraf": "2.5.4", "semantic-release": "4.3.5", "validate-commit-msg": "2.6.1", "webpack": "1.13.1" }, "nyc": { "all": true, "check-coverage": true, "branches": 100, "function": 100, "lines": 100, "statements": 100, "reporter": [ "text", "lcov" ], "include": [ "src" ], "sourceMap": false, "instrument": false, "require": [ "babel-register" ] }, "babel": { "presets": [ "es2015" ], "env": { "test": { "plugins": [ "istanbul" ] } } }, "config": { "commitizen": { "path": "cz-conventional-changelog" }, "ghooks": { "pre-commit": "opt --in pre-commit --exec \"npm run validate\"", "commit-msg": "opt --in commit-msg --exec \"validate-commit-msg\"" } } }