list-runner
Version:
a lightweight linked-list implementation that offers both Singly (next) and Doubly data structures (next and previous)
80 lines (79 loc) • 2.39 kB
JSON
{
"name": "list-runner",
"author": {
"name": "jared boice",
"email": "jaredboice@gmail.com"
},
"description": "a lightweight linked-list implementation that offers both Singly (next) and Doubly data structures (next and previous)",
"version": "1.1.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaredboice/list-runner.git"
},
"bugs": {
"url": "https://github.com/jaredboice/list-runner.git"
},
"homepage": "https://github.com/jaredboice/list-runner.git",
"keywords": [
"linked list",
"singly",
"doubly",
"single",
"double",
"linked",
"list",
"lightweight",
"list runner",
"list-runner",
"stem",
"cell",
"cells",
"baseline",
"within",
"interlink",
"interlinked",
"within cells interlinked",
"blade runner",
"jared boice"
],
"main": "index.js",
"scripts": {
"clean": "rm -rf build",
"lint": "eslint '**/*.{js,jsx}' --quiet",
"build-js": "babel src -d build",
"build": "npm run clean && npm run build-js",
"copy-packagejs-for-publish": "yes | cp -rf ./package.json ./build/package.json",
"copy-readme-for-publish": "yes | cp -rf ./README.md ./build/README.md",
"copy-readme-npm-for-publish": "yes | cp -rf ./README-npm.md ./build/README.md",
"copy-license-for-publish": "yes | cp -rf ./LICENSE.md ./build/LICENSE.md",
"copy-npm-ignore-for-publish": "yes | cp -rf ./.npmignore ./build/.npmignore",
"wrap": "npm run build && npm-run-all -p copy-packagejs-for-publish copy-readme-npm-for-publish copy-license-for-publish copy-npm-ignore-for-publish",
"test": "NODE_PATH=src jest --verbose --ci",
"test:w": "NODE_PATH=src jest --verbose --watchAll",
"test:c": "NODE_PATH=src jest --verbose --coverage"
},
"dependencies": {
"@babel/runtime": "^7.5.4"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"testURL": "http://localhost/"
}
}