SyneticNL/Hyral

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hyral",
  "version": "0.2.0",
  "description": "Hypermedia oriented Resource Api Layer",
  "main": "lib",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watchAll",
    "test:coverage": "jest --coverage",
    "lint": "eslint packages/**/src",
    "fix": ".eslint --fix packages/**/src",
    "build": "lerna exec --parallel 'BABEL_ENV=production babel src --root-mode upward --out-dir lib --source-maps --extensions .js --delete-dir-on-start'",
    "postinstall": "lerna bootstrap && npm run build",
    "prerelease": "npm run build",
    "release": "lerna publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SyneticNL/Hyral.git"
  },
  "keywords": [
    "hypermedia",
    "vue",
    "vuex",
    "client",
    "api",
    "rest",
    "jsonapi",
    "serialize",
    "deserialize",
    "json-api"
  ],
  "author": "Synetic",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SyneticNL/Hyral/issues"
  },
  "homepage": "https://github.com/SyneticNL/Hyral#readme",
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/node": "^7.5.5",
    "@babel/plugin-transform-async-to-generator": "^7.5.0",
    "@babel/plugin-transform-runtime": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-es2015": "^7.0.0-beta.53",
    "@babel/runtime": "^7.5.5",
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^8.1.0",
    "babel-jest": "^24.9.0",
    "babel-plugin-add-module-exports": "^1.0.2",
    "babel-preset-minify": "^0.5.1",
    "cross-env": "^5.2.0",
    "eslint": "^6.2",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-jest": "^22.16.0",
    "husky": "^3.0.4",
    "jest": "^26.6.3",
    "lerna": "^3.16.4"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
    }
  }
}