Newer
Older
pixi.js / package.json
@Matt Karl Matt Karl on 30 Nov 2017 1 KB Fixes NodeJS APIs (#4498)
{
  "private": true,
  "scripts": {
    "postinstall": "npm run bootstrap",
    "bootstrap": "lerna bootstrap --hoist",
    "clean:build": "rimraf \"{bundles,packages,packages/canvas,packages/filters}/*/lib\"",
    "preclean": "npm run clean:build",
    "clean": "lerna clean",
    "pretest": "npm run lint && npm run build:dev",
    "test": "floss --path test",
    "unit-test": "floss --path test",
    "docs": "jsdoc -c jsdoc.conf.json -R README.md",
    "lint": "eslint *.js test bundles packages tools --ignore-path .gitignore --max-warnings 0",
    "lintfix": "npm run lint -- --fix",
    "prebuild": "npm run clean:build",
    "build": "npm run build:prod",
    "build:dev": "rollup -c",
    "build:prod": "rollup -c --prod",
    "watch": "rollup -cw",
    "lerna": "lerna",
    "predist": "rimraf dist/*",
    "dist": "npm run docs && npm run build:prod -- --scope \"pixi.js*\"",
    "postdist": "copyfiles -f \"bundles/*/dist/*\" dist",
    "prerelease": "npm run clean:build && npm test",
    "release": "lerna publish"
  },
  "devDependencies": {
    "@pixi/jsdoc-template": "^2.2.0",
    "copyfiles": "^1.2.0",
    "electron": "^1.7.9",
    "eslint": "^4.6.1",
    "floss": "^2.1.3",
    "glob": "^7.1.2",
    "jsdoc": "^3.4.0",
    "lerna": "^2.4.0",
    "minimist": "^1.2.0",
    "rimraf": "^2.6.2",
    "rollup": "^0.52.0",
    "rollup-plugin-buble": "^0.18.0",
    "rollup-plugin-commonjs": "^8.2.4",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-sourcemaps": "^0.4.2",
    "rollup-plugin-string": "^2.0.2",
    "rollup-plugin-uglify": "^2.0.1",
    "uglify-es": "^3.0.25"
  }
}