{
  "name": "bin-packing-core",
  "version": "0.2.0-beta02",
  "description": "image packer based on genetic & max-rect algorithm",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "files": [
    "lib",
    "esm"
  ],
  "scripts": {
    "dev": "tsc -p ./tsconfig.json --watch ",
    "test": "mocha -r ts-node/register test/**/**.ts",
    "build": "npm run build:es5 && npm run build:es6",
    "build:es5": "tsc -p ./tsconfig.json -d",
    "build:es6": "tsc -p ./tsconfig.esm.json -d",
    "lint": "tslint --project ./tsconfig.json",
    "lint:fix": "tslint --fix --project ./tsconfig.json",
    "prepublish": "tnpm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+git@github.com:ant-tinyjs/bin-packing-core.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/ant-tinyjs/bin-packing-core/issues"
  },
  "homepage": "https://github.com/ant-tinyjs/bin-packing-core#readme",
  "dependencies": {},
  "devDependencies": {
    "@types/chai": "^4.1.3",
    "@types/mocha": "^5.2.2",
    "@types/node": "^10.3.2",
    "chai": "^4.1.2",
    "mocha": "^5.2.0",
    "tslint": "^5.8.0",
    "ts-node": "^6.1.1",
    "typescript": "^2.9.2"
  }
}
