@math-x-ts/generix
Version:
This library tasks is to generate combinations and permutations
39 lines • 1.39 kB
JSON
{
"private": false,
"name": "@math-x-ts/generix",
"description": "This library tasks is to generate combinations and permutations",
"version": "0.0.12",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"unpkg": "./lib/umd/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"clean:lib": "rimraf lib",
"build:all": "yarn clean:lib && yarn build:types && yarn build:esm && yarn build:cjs && yarn build:umd",
"build:types": "tsc --emitDeclarationOnly --declaration true --outDir lib/types",
"build:esm": "tsc --module es2015 --target es5 --outDir lib/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
"build:umd": "webpack --config webpack.config.js",
"check:types": "tsc --noEmit",
"lint": "eslint ./src/**/*",
"lint:fix": "eslint ./src/**/* --fix",
"test": "jest --verbose",
"test:bundle": "jest --config ./jest.bundle.config.ts --detectOpenHandles --verbose",
"check:all": "yarn check:types && yarn lint && yarn test",
"npm:publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/dopey2/math-x-ts"
},
"keywords": [
"Generation",
"Combination",
"Permutation"
],
"homepage": "https://github.com/dopey2/math-x-ts/blob/main/packages/generix/README.md",
"license": "MIT"
}