sjsyrek/lazy-linked-lists

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "lazy-linked-lists",
  "description": "Lazy and infinite linked lists for JavaScript.",
  "author": "Steven J. Syrek",
  "license": "ISC",
  "homepage": "https://github.com/sjsyrek/lazy-linked-lists",
  "repository": {
    "type": "git",
    "url": "https://github.com/sjsyrek/lazy-linked-lists.git"
  },
  "bugs": {
    "url": "https://github.com/sjsyrek/lazy-linked-lists/issues"
  },
  "keywords": [
    "linked",
    "lists",
    "lazy",
    "infinite",
    "data",
    "structures",
    "babel",
    "es6",
    "es2015",
    "proxy",
    "haskell",
    "functional",
    "fp"
  ],
  "main": "./distribution/index.js",
  "directories": {
    "lib": "distribution",
    "test": "test",
    "example": "example"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false
  },
  "standard": {
    "ignore": [
      "distribution"
    ],
    "env": [
      "mocha"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.11.4",
    "babel-core": "^6.13.2",
    "babel-plugin-istanbul": "^2.0.0",
    "babel-plugin-transform-runtime": "^6.12.0",
    "babel-preset-es2015": "^6.13.2",
    "babel-register": "^6.11.6",
    "bithound": "^1.7.0",
    "codeclimate-test-reporter": "^0.4.0",
    "cross-env": "^3.1.0",
    "eslint": "^3.6.0",
    "mocha": "^3.0.2",
    "nyc": "^8.1.0",
    "semantic-release": "^4.3.5",
    "should": "^11.1.0",
    "standard": "^8.4.0"
  },
  "dependencies": {
    "babel-runtime": "^6.11.6"
  },
  "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",
    "watch": "npm test -- --watch",
    "cover": "nyc --reporter html --reporter text -- npm -s test",
    "cover:report": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
    "prepublish": "npm run compile",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "standard": "standard",
    "fix": "standard --fix"
  }
}