ts-combinatorics
Version:
Simple combinatorics like power set, combination, and permutation in JavaScript
29 lines (28 loc) • 638 B
JSON
{
"name": "ts-combinatorics",
"version": "1.0.0",
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"devDependencies": {
"@types/node": "^14.14.16",
"chai": "^4.2.0",
"mocha": "^8.0.0",
"typescript": "^4.1.3"
},
"scripts": {
"test": "mocha",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/shirshak55/ts-combinatorics"
},
"keywords": [
"Combinatorics",
"combination",
"permutation"
],
"author": "Dan Kogai",
"license": "MIT"
}