structs
Version:
A collection of general purpose data structures for JavaScript/TypeScript
67 lines (66 loc) • 1.78 kB
JSON
{
"name": "structs",
"version": "0.1.1",
"description": "A collection of general purpose data structures for JavaScript/TypeScript",
"jsdelivr": "lib/index.min.js",
"unpkg": "lib/index.min.js",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!lib/dts"
],
"private": false,
"scripts": {
"prepare": "husky install",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"lint": "eslint '**/*.{js,ts}'",
"test": "jest",
"test:cov": "jest --coverage",
"prebuild": "rimraf lib",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/errmayank/structs.git"
},
"bugs": {
"url": "https://github.com/errmayank/structs/issues"
},
"keywords": [
"structs",
"data structure",
"collection"
],
"author": "Mayank Verma",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"jest": "^27.1.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}