historical-permutations
Version:
A library of historical permutation algorithms from 1950s-present implemented in JavaScript.
59 lines (58 loc) • 1.44 kB
JSON
{
"name": "historical-permutations",
"version": "1.0.0",
"description": "A library of historical permutation algorithms from 1950s-present implemented in JavaScript.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint algorithms/*.js",
"test": "mocha ./spec/*.spec.js",
"test:wip": "mocha ./work-in-progress/spec/*",
"test:algo": "mocha ./spec/*.spec.js --grep UTILITIES --invert -R 'spec'",
"test:utils": "mocha ./spec/utils.spec.js"
},
"keywords": [
"historical",
"permutations",
"combinatorics",
"Gysin",
"Tompkins",
"Paige",
"Lehmer",
"Walker",
"Hall",
"Coveyou",
"Sullivan",
"Wells",
"Peck",
"Heap",
"Shen",
"Schrack",
"Shimrat",
"superpermutations",
"Steinhaus",
"Johnson",
"Trotter",
"Myrvold",
"Ruskey",
"Ord-Smith",
"Sedgewick"
],
"author": "David Pocknee",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lodash": "^4.17.11",
"mocha": "^6.0.1",
"prettier": "^1.16.4",
"node-fetch": "^2.3.0"
}
}