UNPKG

@truck/doubly-linked-list

Version:

A JavaScript implementation of the Doubly Linked-List data structure

55 lines (54 loc) 1.61 kB
{ "name": "@truck/doubly-linked-list", "version": "1.1.0", "description": "A JavaScript implementation of the Doubly Linked-List data structure", "main": "lib/index.js", "files": [ "/lib" ], "scripts": { "build": "babel src --out-dir lib --ignore src/**/*.test.js", "coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls", "semantic-release": "semantic-release", "test": "npm run test:lint && npm run test:vulnerabilities && npm run test:scripts", "test:lint": "eslint --ext js .", "test:scripts": "jest --config ./jest.config.json --coverage", "test:vulnerabilities": "npm audit", "travis-deploy-once": "travis-deploy-once" }, "keywords": [ "Doubly", "Linked-List", "Linked List", "Data Structure" ], "author": "Hendrik Volschenk <righteous.trespasser@gmail.com>", "license": "MIT", "devDependencies": { "@babel/cli": "^7.2.0", "@babel/core": "^7.2.0", "@babel/preset-env": "^7.2.0", "@commitlint/cli": "^7.2.1", "@commitlint/config-conventional": "^7.1.2", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "coveralls": "^3.0.2", "eslint": "^5.9.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-plugin-import": "^2.14.0", "husky": "^1.2.0", "jest": "^23.6.0", "semantic-release": "^15.12.5", "travis-deploy-once": "^5.0.9" }, "repository": { "type": "git", "url": "https://github.com/truck-js/doubly-linked-list.git" }, "publishConfig": { "access": "public" }, "dependencies": { "lodash.isfunction": "^3.0.9" } }