-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.44 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
54
55
56
57
58
59
60
61
{
"name": "opensteer",
"description": "Steering Behaviors for Autonomous Characters",
"version": "0.0.0",
"homepage": "https://github.com/zerotacg/opensteer.js",
"author": {
"name": "Tobias Peters",
"email": "[email protected]"
},
"contributors": [
{
"name": "Tobias Peters",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/zerotacg/opensteer.js.git"
},
"bugs": {
"url": "https://github.com/zerotacg/opensteer.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/zerotacg/opensteer.js/blob/master/LICENSE"
}
],
"main": "src/opensteer",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "jshint src/**/*.js test/**/*.js",
"pretest": "npm run lint",
"test": "mocha --recursive --compilers js:babel/register",
"postinstall": "jspm install"
},
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.3.0",
"jshint": "^2.8.0",
"jshint-stylish": "^1.0.0",
"jspm": "^0.16.12",
"mocha": "^2.3.3",
"rx": "^4.0.1"
},
"keywords": [],
"jspm": {
"dependencies": {
"cannon": "npm:cannon@^0.6.2",
"react": "npm:react@^0.14.0",
"rx": "npm:rx@^4.0.1"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}