-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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": "rectanglepacker",
"version": "3.0.0",
"description": "heuristic algorithm for efficiently packing rectangles of a fixed aspect ratio into a defined space, addressing the NP-hard bin packing problem through iterative adjustment of tile sizes and arrangement.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha.js",
"start": "webpack serve --config './src/build/webpack.dev.js' --open",
"build": "webpack --config './src/build/webpack.prod.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aslamhus/RectanglePacker.git"
},
"keywords": [
"bin",
"packing",
"rectangle",
"packing",
"heuristic",
"algorithm"
],
"author": "Aslam Husain <aslam.percy.husain@gmail.com> (https://github.com/aslamhus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aslamhus/RectanglePacker/issues"
},
"homepage": "https://github.com/aslamhus/RectanglePacker#readme",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"mocha": "^10.3.0",
"style-loader": "^3.3.4",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"type": "module"
}