UNPKG

slim-stack

Version:

stack implementation for JavaScript

76 lines (75 loc) 1.97 kB
{ "name": "slim-stack", "version": "1.3.0", "description": "stack implementation for JavaScript", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "https://github.com/nivrith/slim-stack", "author": "Nivrith <nivrithgomatam@gmail.com>", "license": "MIT", "keywords": [ "stack", "create-stack", "stackjs", "js-stack", "slim-stack", "queue", "first-in-last-out" ], "scripts": { "compile": "npm run clean && tsc -b", "start": "yarn compile && node dist/index", "test": "nyc mocha --require ts-node/register test/**/*.spec.ts", "prepublishOnly": "npm run compile", "pretest": "npm run clean && npm run compile", "clean": "del-cli dist", "release": "npx np", "docs": "typedoc src", "trace": "tsc -b && node --trace-deopt --trace-opt --runtime_call_stats --trace_ic --trace_ic", "devtools": "node --inspect --inspect-brk", "benchmark": "tsc -b && node", "version": "npx auto-changelog -p && git add CHANGELOG.md" }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "all": true, "lines": 80, "exclude": [ "test", "docs", "dist" ], "check-coverage": true }, "files": [ "dist/**/*" ], "dependencies": {}, "engines": { "node": ">=8" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^0.1.3", "@types/benchmark": "^1.0.31", "@types/chai": "^4.1.7", "@types/cli-table2": "^0.2.2", "@types/mocha": "^5.2.7", "@types/ora": "^3.2.0", "@types/typescript": "^2.0.0", "auto-changelog": "^1.14.1", "benchmark": "^2.1.4", "chai": "^4.2.0", "cli-table2": "^0.2.0", "del-cli": "^2.0.0", "fast-memoize": "^2.5.1", "logdown": "^3.2.8", "microtime": "^3.0.0", "mocha": "^6.1.4", "nyc": "^14.1.1", "ora": "^3.4.0", "ts-node": "^8.3.0", "tslint": "^5.18.0", "typedoc": "^0.14.2", "typescript": "^3.5.2" } }