forked from trombonekenny/karmarkar-karp
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "aufteilung",
"version": "1.1.1",
"repository": "https://github.com/boredland/aufteilung",
"description": "Implements Karmarkar-Karp Least Differencing Method of number partitioning",
"author": "Dave Mussulman <[email protected]>",
"contributors": [
"Jonas Strassel <[email protected]"
],
"keywords": [
"karmarkar-karp",
"least-differencing",
"ldm",
"partitioning"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"heap-js": "2.6.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@release-it/conventional-changelog": "5.1.1",
"@types/jest": "29.5.14",
"@types/node": "18.19.80",
"commitlint": "17.8.1",
"husky": "8.0.3",
"jest": "28.1.3",
"release-it": "15.11.0",
"ts-jest": "29.2.6",
"ts-node": "10.9.2",
"tsup": "6.7.0",
"typescript": "4.9.5"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"prerelease": "yarn test && yarn build",
"release": "release-it",
"test": "jest",
"prepare": "husky install"
},
"license": "MIT"
}