{
    "name": "singly-linked-list",
    "version": "1.4.1",
    "description": "Javascript implementation of singly linked list data structure",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "build": "tsc",
        "dist-clean": "rm -rf dist",
        "pretest": "yarn lint",
        "test": "jest --colors --verbose src/__tests__/*.spec.ts",
        "lint": "eslint src/index.ts src/lib/*.ts",
        "prepublishOnly": "yarn lint && yarn test",
        "prepare": "yarn build"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/jasonsjones/data-structures.git",
        "directory": "packages/singly-linked-list"
    },
    "keywords": [
        "singly linked-list",
        "abstract data type",
        "linked list",
        "data structure"
    ],
    "author": "Jason Jones",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/jasonsjones/data-structures/issues"
    },
    "homepage": "https://github.com/jasonsjones/data-structures",
    "dependencies": {
        "lodash.isequal": "4.5.0"
    },
    "files": [
        "dist/**/*"
    ],
    "gitHead": "01e1842743af1de0f851e7d2f57ef246b9521f9f"
}
