UNPKG

data-structures-es6

Version:

JavaScript data structures written in es6 (es 2015)

63 lines (62 loc) 1.67 kB
{ "name": "data-structures-es6", "version": "0.0.49", "description": "JavaScript data structures written in es6 (es 2015)", "main": "index.js", "scripts": { "test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha", "tdd": "./node_modules/.bin/mocha --watch", "coverage": "nyc report --reporter=text-lcov | coveralls", "build": "./node_modules/.bin/babel ./src --out-dir dest", "build:watch": "./node_modules/.bin/babel ./src --watch --out-dir dest", "eslint": "./node_modules/.bin/eslint src/**/*.js", "commit": "commit-wizard", "ver": "npm version patch --no-git-tag-version && git add package.json" }, "config": { "pre-git": { "commit-msg": "simple", "pre-commit": [ "npm run ver", "npm run eslint", "npm run test" ], "pre-push": [], "post-commit": [], "post-checkout": [], "post-merge": [] } }, "repository": { "type": "git", "url": "git+https://github.com/vasergen/data-structures-es6.git" }, "keywords": [ "data-structures", "stack", "stackjs", "linkedlist", "es2015", "es6" ], "author": "vasergen", "license": "MIT", "bugs": { "url": "https://github.com/vasergen/data-structures-es6/issues" }, "homepage": "https://github.com/vasergen/data-structures-es6#readme", "devDependencies": { "babel": "^6.5.2", "babel-cli": "^6.11.4", "babel-preset-es2015": "^6.9.0", "coveralls": "^2.11.12", "eslint": "^3.1.1", "expect": "^1.20.2", "mocha": "^2.5.3", "nyc": "^7.1.0", "pre-git": "^3.10.0" }, "dependencies": { "coveralls": "^2.11.12" } }