-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "crash-colliders",
"version": "2.0.2",
"description": "Crash performs optimized 2D collisions, powered by RBush and SAT.js, written in javascript.",
"main": "crash.js",
"dependencies": {
"rbush": "^2.0.1",
"sat": "^0.5.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"sinon": "^1.14.1",
"uglify-js": "^3.4.9"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"build": "uglifyjs crash.js --compress --mangle --output crash.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TuurDutoit/crash"
},
"keywords": [
"2D",
"collision",
"RBush",
"SAT"
],
"author": "Tuur Dutoit",
"license": "MIT",
"bugs": {
"url": "https://github.com/TuurDutoit/crash/issues"
},
"homepage": "https://github.com/TuurDutoit/crash"
}