forked from anoopelias/boids
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 992 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 992 Bytes
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
{
"name": "boids",
"description": "A fast JavaScript implementation of the boids algorithm ",
"version": "1.0.0",
"dependencies": {
"inherits": "~1.0.0"
},
"devDependencies": {
"beefy": "~0.1.0",
"browserify": "~2.13.2",
"debounce": "0.0.2",
"fps": "0.0.3",
"jshint": "^2.6.3",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-mocha": "^0.1.10",
"mocha": "^2.2.1",
"raf": "0.0.2",
"ticker": "0.0.1"
},
"gitHead": "d450d79f6388cb739e55a84b11c5b38660897ac1",
"main": "index.js",
"scripts": {
"test": "jshint js/ test/ && mocha test",
"prepublish": "browserify js/demo.js -o bundle.js",
"start": "beefy js/demo.js:bundle.js"
},
"repository": {
"type": "git",
"url": "git://github.com/anoopelias/boids.git"
},
"keywords": [
"boids",
"flocking",
"algorithm",
"emergence"
],
"author": "Anoop Elias<anoopelias@gmail.com> (http:/anoopelias.github.io/)",
"license": "MIT"
}