{
  "name": "<%= npmName %>",
  "version": "0.0.0",
  "description": "<%= description %>",
  "private": true,
  "dependencies": {},
  "scripts": {
    "eslint": "eslint src",
    "eslint-fix": "npm run eslint -- --fix",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "test": "npm run test-only && npm run eslint && npm run prettier",
    "test-only": "jest --coverage"
  },
  "eslintConfig": {
    "extends": "cheminfo-react",
    "parser": "babel-eslint",
    "rules": {
      "import/no-unresolved": "off"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/<%= org %>/<%= name %>.git"
  },
  "keywords": [],
  "author": "<%= userName %>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/<%= org %>/<%= name %>/issues"
  },
  "homepage": "https://github.com/<%= org %>/<%= name %>#readme",
  "jest": {
    "testEnvironment": "node"
  }
}
