forked from olragon/binpackingjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 820 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
{
"name": "binpackingjs",
"version": "2.3.1",
"description": "2D, 3D, 4D Bin Packing",
"repository": {
"type": "git",
"url": "https://github.com/olragon/binpackingjs"
},
"main": "dist/BinPacking.min.js",
"scripts": {
"build": "webpack",
"dev": "webpack --progress --colors --watch",
"test": "mocha ./test/*.js",
"test-dev": "mocha --watch ./test/*.js"
},
"browserslist": [
"defaults"
],
"author": "Long Nguyen",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"console.table": "^0.10.0",
"mocha": "^6.2.0",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.38.0",
"webpack-cli": "3.3.6"
}
}