sjsyrek/maryamyriameliamurphies.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "maryamyriameliamurphies",
  "version": "1.0.4",
  "description": "A library of Haskell-style morphisms ported to ES2015 JavaScript using Babel.",
  "author": "Steven J. Syrek <steven.syrek@gmail.com>",
  "license": "ISC",
  "homepage": "https://github.com/sjsyrek/maryamyriameliamurphies.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/sjsyrek/maryamyriameliamurphies.js.git"
  },
  "bugs": {
    "url": "https://github.com/sjsyrek/maryamyriameliamurphies.js/issues"
  },
  "keywords": [
    "javascript",
    "js",
    "babel",
    "es6",
    "es2015",
    "haskell",
    "functional",
    "mocha",
    "eslint"
  ],
  "main": "./distribution/index.js",
  "directories": {
    "lib": "distribution",
    "test": "test",
    "example": "example"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "browserify": {
    "transform": [
      [
        "babelify",
        {
          "presets": [
            "es2015"
          ],
          "comments": false,
          "minified": true
        }
      ]
    ]
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false
  },
  "tonicExampleFilename": "tonic.js",
  "devDependencies": {
    "babel-cli": "^6.11.4",
    "babel-core": "^6.11.4",
    "babel-plugin-istanbul": "^2.0.0",
    "babel-plugin-transform-runtime": "^6.9.0",
    "babel-preset-es2015": "^6.9.0",
    "babel-register": "^6.9.0",
    "babelify": "^7.3.0",
    "codeclimate-test-reporter": "^0.4.0",
    "cross-env": "^3.1.0",
    "eslint": "^3.1.1",
    "jsdoc": "^3.4.0",
    "mocha": "^3.0.2",
    "nyc": "^8.1.0",
    "should": "^11.1.0"
  },
  "dependencies": {
    "babel-runtime": "^6.9.2"
  },
  "scripts": {
    "clean": "rm -r distribution/*",
    "compile": "babel source --out-dir distribution",
    "lint": "eslint source",
    "test": "cross-env NODE_ENV=test mocha --compilers js:babel-register",
    "cover": "nyc --reporter html --reporter text -- npm -s test",
    "cover:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
    "doc": "jsdoc source -c conf.json -r -d doc",
    "bundle": "browserify source/index.js -s maryamyriameliamurphies > bundle/maryamyriameliamurphies.js",
    "build": "npm run clean && npm run compile && npm run bundle && npm run doc",
    "prepublish": "npm run compile"
  }
}