-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
43
44
45
{
"name": "box-packer",
"version": "0.1.0",
"description": "Box packing of physical items for real world operations.",
"author": "Danica Brown",
"homepage": "https://www.danicabrown.com/posts/bin-packer",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collect-coverage",
"circleci": "jest --ci --runInBand --reporters=default --reporters=jest-junit"
},
"jest-junit": {
"outputDirectory": "./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/dbrown428/box-packer"
},
"keywords": [
"binpacking",
"packing",
"box",
"packer",
"box packing",
"box packer",
"shipment packing",
"item packer"
],
"license": "MIT",
"dependencies": {
"binpackingjs": "^3.0.2",
"purify-ts": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]"
}