JiriChara/krtek

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "krtek",
  "version": "0.1.1",
  "main": "lib/index.js",
  "author": "Jiri Chara <jiri@chara.vip>",
  "license": "MIT",
  "scripts": {
    "clean": "rimraf lib coverage esdoc",
    "doc": "mkdirp esdoc && esdoc -c esdoc.json",
    "test": "npm run lint && nyc ava",
    "report": "nyc report --reporter=lcov",
    "lint": "eslint src spec",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
    "build": "npm run test && npm run clean && npm run build:commonjs && npm run doc && npm run report"
  },
  "dependencies": {
    "babel-cli": "^6.16.0",
    "babel-plugin-transform-class-properties": "^6.16.0",
    "babel-plugin-transform-decorators-legacy": "^1.3.4",
    "babel-polyfill": "^6.16.0",
    "babel-preset-es2015": "^6.16.0",
    "babel-preset-react": "^6.16.0",
    "babelify": "^7.3.0",
    "browserify": "^13.1.0",
    "browserify-string": "^1.1.1",
    "express": "^4.14.0",
    "hookies": "^2.0.5",
    "minify": "ianstormtaylor/minify",
    "uglify-js": "^2.7.3"
  },
  "devDependencies": {
    "ava": "^0.16.0",
    "babel-eslint": "^7.0.0",
    "babel-preset-stage-0": "^6.16.0",
    "babel-register": "^6.16.3",
    "cross-env": "^3.1.2",
    "esdoc": "^0.4.8",
    "eslint": "^3.7.1",
    "eslint-config-airbnb": "^12.0.0",
    "eslint-plugin-import": "^1.16.0",
    "eslint-plugin-jsx-a11y": "^2.2.3",
    "eslint-plugin-react": "^6.4.1",
    "mkdirp": "^0.5.1",
    "nyc": "^8.3.1",
    "rimraf": "^2.5.4",
    "sinon": "^1.17.6",
    "supertest": "^2.0.0",
    "supertest-as-promised": "^4.0.0"
  },
  "ava": {
    "files": [
      "spec/**/*.spec.js"
    ],
    "source": [
      "src/*.js"
    ],
    "concurrency": 5,
    "failFast": true,
    "tap": true,
    "powerAssert": false,
    "babel": "inherit",
    "require": [
      "babel-register"
    ]
  },
  "nyc": {
    "include": [
      "src/*.js"
    ]
  }
}