-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "js-combinatorics",
"version": "2.1.2",
"description": "Simple combinatorics like power set, combination, and permutation in JavaScript",
"main": "combinatorics.js",
"module": "combinatorics.js",
"type": "module",
"exports": {
"import": "./combinatorics.js",
"require": "./commonjs/combinatorics.js"
},
"types": "combinatorics.d.ts",
"files": [
"combinatorics.d.ts",
"combinatorics.js",
"umd",
"commonjs"
],
"runkitExample": "require=require(\"esm\")(module);\nvar Combinatorics=require(\"js-combinatorics\");\n",
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.9.0",
"mocha": "^10.0.0",
"chai": "^4.2.0"
},
"scripts": {
"test": "make clean && make test"
},
"repository": {
"type": "git",
"url": "git://github.com/dankogai/js-combinatorics.git"
},
"keywords": [
"Combinatorics",
"combination",
"permutation"
],
"author": "Dan Kogai",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "e3684eb54f7c6fbb24bb7a4d08d88671ce12e9eb"
}