{
  "name": "resource-loader",
  "version": "3.0.1",
  "main": "./dist/resource-loader.cjs.js",
  "module": "./dist/resource-loader.esm.js",
  "bundle": "./dist/resource-loader.js",
  "types": "./typings/resource-loader.d.ts",
  "description": "A generic asset loader, made with web games in mind.",
  "author": "Chad Engler <chad@pantherdev.com>",
  "license": "MIT",
  "homepage": "https://github.com/englercj/resource-loader",
  "repository": {
    "type": "git",
    "url": "https://github.com/englercj/resource-loader.git"
  },
  "bugs": {
    "url": "https://github.com/englercj/resource-loader/issues"
  },
  "keywords": [],
  "files": [
    "dist",
    "lib",
    "typings",
    "package.json",
    "CONTRIBUTING.md",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "clean": "rimraf ./dist/* ./lib/* && run-s setup",
    "dts": "jsdoc -t node_modules/tsd-jsdoc/dist -r src -P package.json -d typings/",
    "setup": "mkdirp dist lib",
    "prebuild": "run-s setup clean lint",
    "build": "rollup -c",
    "lint": "eslint src/ test/",
    "watch": "rollup -cw",
    "start": "run-s build",
    "pretest": "run-s build",
    "test": "npm run test-dev -- --single-run",
    "test-dev": "karma start test/karma.conf.js",
    "docs": "jsdoc -c jsdoc.conf.json -R README.md",
    "prepublish": "run-s build",
    "predeploy": "rimraf ./docs && run-s docs",
    "deploy": "gh-pages -d docs",
    "postpublish": "npm run deploy"
  },
  "dependencies": {
    "mini-signals": "^1.2.0",
    "parse-uri": "^1.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@englercj/code-style": "^1.0.7",
    "@pixi/jsdoc-template": "^2.4.2",
    "chai": "^4.2.0",
    "eslint": "^5.16.0",
    "gh-pages": "^2.0.1",
    "ink-docstrap": "^1.3.2",
    "jsdoc": "^3.6.1",
    "karma": "^4.1.0",
    "karma-chrome-launcher": "^2.2.0",
    "karma-firefox-launcher": "^1.1.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-sinon-chai": "^2.0.2",
    "mkdirp": "^0.5.1",
    "mocha": "^6.1.4",
    "npm-run-all": "^4.1.5",
    "rimraf": "^2.6.3",
    "rollup": "^1.11.3",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^9.3.4",
    "rollup-plugin-node-resolve": "^4.2.3",
    "rollup-plugin-terser": "^4.0.4",
    "sinon": "^7.3.2",
    "sinon-chai": "^3.3.0",
    "tsd-jsdoc": "^2.1.3"
  }
}
