UnlyEd/boilerplates-generator

View on GitHub
templates/node-v12.6.0-package-OSS/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@unly/PROJECT-NAME",
  "version": "1.0.0",
  "description": "A project generated by https://github.com/UnlyEd/boilerplate-generator",
  "scripts": {
    "start": "cross-env-shell 'concurrently -p '{name}' -n 'lint,build,test' -c 'gray.bgWhite,yellow.bgBlue,green.bgWhite' \"yarn lint\" \"yarn build\" \"yarn test\"'",
    "build": "webpack",
    "build:once": "TODO",
    "clean": "rm -rf lib/",
    "lint": "esw src/ --fix --watch",
    "lint:once": "eslint src/ --fix",
    "preversion": "yarn lint:once && yarn test:once && yarn doc:toc && yarn run doc:api",
    "postversion": "git push && git push --tags",
    "prepublishOnly": "yarn clean && yarn build:once && yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first. (y/n)\"",
    "publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
    "release": "yarn bump --prompt --commit --tag --push",
    "releaseAndPublish": "yarn release && npm publish",
    "doc:api": "jsdoc2md src/*.js > API.md",
    "doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
    "test": "NODE_ENV=test jest --watch",
    "test:once": "NODE_ENV=test jest",
    "test:coverage": "NODE_ENV=test jest --coverage"
  },
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/UnlyEd/PROJECT-NAME.git"
  },
  "author": "unlyEd",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/UnlyEd/PROJECT-NAME/issues"
  },
  "homepage": "https://github.com/UnlyEd/PROJECT-NAME",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "files": [
    "/lib"
  ],
  "jest": {
    "setupFilesAfterEnv": [
      "jest-extended"
    ],
    "verbose": true
  },
  "dependencies": {},
  "devDependencies": {
    "@babel/cli": "7.4.4",
    "@babel/core": "7.4.5",
    "@babel/preset-env": "7.4.5",
    "@unly/cli-confirm": "1.1.1",
    "babel-jest": "24.8.0",
    "babel-loader": "8.0.6",
    "concurrently": "4.1.0",
    "cross-env": "5.2.0",
    "eslint": "4.19.1",
    "eslint-config-airbnb-base": "13.1.0",
    "eslint-plugin-import": "2.14",
    "eslint-watch": "4.0.2",
    "jest": "24.8.0",
    "jest-extended": "0.11.1",
    "jsdoc-to-markdown": "4.0.1",
    "markdown-toc": "1.2.0",
    "version-bump-prompt": "4.2.2",
    "webpack": "4.36.1"
  }
}