little-ds-toolkit
Version:
A small collection of useful data structures
38 lines (37 loc) • 1.05 kB
JSON
{
"name": "little-ds-toolkit",
"version": "1.1.1",
"description": "A small collection of useful data structures",
"main": "index.js",
"scripts": {
"test": "mocha tests/**/*.js",
"watch": "npm run test -- -w",
"lint": "eslint --fix --ext .js ./lib ./tests",
"release:major": "npm-release major",
"release:minor": "npm-release minor",
"release:patch": "npm-release patch",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"keywords": [
"data",
"structures",
"algorithms"
],
"repository": "git@github.com:sithmel/little-ds-toolkit.git",
"author": "Maurizio Lupo <maurizio.lupo@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mocha": "^5.0.5",
"npm-release": "^1.0.0"
},
"dependencies": {}
}