@derekjwilliams/linkedstack
Version:
Simple Linked Stack; using a functional approach
33 lines (32 loc) • 725 B
JSON
{
"name": "@derekjwilliams/linkedstack",
"version": "1.0.0",
"description": "Simple Linked Stack; using a functional approach",
"type": "module",
"main": "linkedstack",
"scripts": {
"test": "mocha tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derekjwilliams/LinkedStack.git"
},
"keywords": [
"Stack",
"Curry",
"Functional",
"Linked"
],
"author": "Derek Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/derekjwilliams/LinkedStack/issues"
},
"homepage": "https://github.com/derekjwilliams/LinkedStack#readme",
"devDependencies": {
"@types/mocha": "^10.0.1"
},
"dependencies": {
"chai": "^4.3.7"
}
}