forked from 06wj/MaxRectsBinPack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 930 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
{
"name": "rects-bin-pack",
"version": "0.2.1",
"main": "build/MaxRectsBinPack.js",
"description": "MaxRects Algorithm javascript implementation",
"scripts": {
"dev": "webpack --watch --env.development",
"build": "webpack -p",
"eslint-fix": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "[email protected]:06wj/MaxRectsBinPack.git"
},
"keywords": [
"MaxRectsBinPack",
"MaxRects",
"pack",
"rect",
"texture"
],
"author": "06wj, finscn",
"license": "MIT",
"runkitExampleFilename": "demo/runkit.js",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"wrapper-webpack-plugin": "^2.0.0"
}
}