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.
27 lines
677 B
27 lines
677 B
{
|
|
"name": "@codefeathers/infinity",
|
|
"version": "0.2.0",
|
|
"description": "Infinitely generating linked list with memoisation (or an n-generator)",
|
|
"main": "es5/infinity.min.js",
|
|
"scripts": {
|
|
"test": "jasmine",
|
|
"build": "./build.sh && jasmine",
|
|
"prepublishOnly": "npm run build",
|
|
"release": "npm run build && npm publish"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
|