-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 917 Bytes
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
{
"name": "permutation-way",
"version": "2.0.0",
"description": "permutation using Steinhaus-Johnson-Trotter algorithm with Even's speed up. This package deliver asynchronously permutations of the original array",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/corentinway/permutation-way"
},
"bugs": {
"url": "https://github.com/corentinway/permutation-way/issues"
},
"keywords": [
"math",
"permutation"
],
"author": "corentinway@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.25",
"chai": "4.3",
"mocha": "9.2",
"sinon": "13.0",
"sinon-chai": "3.7",
"typescript": "^4.6.3"
}
}