-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 885 Bytes
/
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
{
"name": "combinate",
"version": "1.1.11",
"description": "Type safe combinatorics utility for getting all combinations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nas5w/combinate.git"
},
"keywords": [
"combinations",
"permutations",
"combinatorics",
"combos"
],
"author": "Nick Scialli",
"license": "MIT",
"bugs": {
"url": "https://github.com/nas5w/combinate/issues"
},
"homepage": "https://github.com/nas5w/combinate#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.0.13",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^3.9.5"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}