🖇 Infinitely generating linked list with memoisation (or an nth-generator).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
722 B

6 years ago
{
"name": "@codefeathers/infinity",
"version": "0.5.1",
"description": "Infinitely generating linked list with memoisation (or an n-generator)",
"main": "es5/infinity.min.js",
"scripts": {
"build": "./build.sh",
6 years ago
"test:es6": "NODE_ENV=development npx jasmine",
"test:es5": "NODE_ENV=production npm run build && npx jasmine",
"test": "npm run test:es6 && npm run test:es5",
"prepublishOnly": "npm test"
},
"keywords": [
"infinite",
"list",
"data structure",
"datatypes",
"generators"
],
"author": "Muthu Kumar <@MKRhere> (https://mkr.pw)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.2",
"uglify-js": "^3.3.25"
}
}