-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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"
]
}
}