BlackDice/lill

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "lill",
  "description": "Lightweight linked list implementation with small memory footprint.",
  "version": "0.5.0",
  "license": "MIT",
  "keywords": [
    "linked-list",
    "linked",
    "list",
    "es6",
    "symbol",
    "lightweight"
  ],
  "author": "FredyC <fredy.c@seznam.cz>",
  "homepage": "https://github.com/BlackDice",
  "repository": {
    "type": "git",
    "url": "git@github.com:BlackDice/lill.git"
  },
  "bugs": {
    "url": "https://github.com/BlackDice/lill/issues"
  },
  "main": "dist/lill.js",
  "scripts": {
    "test": "npm run build && mocha && npm run lint",
    "lint": "eslint src test",
    "build": "rollup -c",
    "release": "publish-please",
    "prepublish": "publish-please guard"
  },
  "devDependencies": {
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-latest-minimal": "^1.1.2",
    "babel-register": "^6.18.0",
    "chai": "^3.5.0",
    "eslint": "^3.14.0",
    "eslint-config-blackdice": "^0.2.0",
    "mocha": "^3.1.2",
    "publish-please": "^2.2.0",
    "rollup": "^0.42.0",
    "rollup-plugin-babel": "^2.6.1",
    "sinon": "^2.1.0",
    "sinon-chai": "^2.7.0"
  }
}