UNPKG

boid

Version:
54 lines (53 loc) 1.28 kB
{ "name": "boid", "version": "0.3.3", "description": "Bird-like behaviours", "keywords": [ "boid", "boids", "flocking", "flock" ], "author": "ianmcgregor", "license": "MIT", "main": "src/boid.js", "scripts": { "test": "mocha", "test:watch": "mocha --watch", "build": "NODE_ENV=production rollup -c && rollup -c", "start": "rollup -c -w | npm run sync", "lint": "eslint 'src/**/*.js'; exit 0", "sync": "browser-sync start --server examples --server './' --files 'dist/*'" }, "readmeFilename": "README.md", "repository": { "type": "git", "url": "https://github.com/ianmcgregor/boid" }, "devDependencies": { "babel-core": "^6.22.1", "babel-eslint": "^7.1.1", "babel-plugin-external-helpers": "^6.22.0", "babel-preset-es2015": "^6.22.0", "browser-sync": "^2.18.6", "chai": "^3.5.0", "mocha": "^3.2.0", "rollup": "^0.41.4", "rollup-plugin-babel": "^2.7.1", "rollup-plugin-commonjs": "^7.0.0", "rollup-plugin-node-resolve": "^2.0.0", "rollup-plugin-strip": "^1.1.1", "rollup-plugin-uglify": "^1.0.1", "rollup-watch": "^3.2.2" }, "browserify": { "transform": [ "babelify" ] }, "babel": { "presets": [ "es2015" ] } }