-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "rectangles-intersect",
"version": "0.0.0",
"description": "Determine if two rectangles intersect each other.",
"main": "rectangles-intersect.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify rectangles-intersect.js --debug --standalone rectanglesIntersect | exorcist dist/rectangles-intersect.js.map > dist/rectangles-intersect.js",
"build-min": "browserify rectangles-intersect.js --standalone rectanglesIntersect | uglifyjs -c -m > dist/rectangles-intersect.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/geosquare/rectangles-intersect"
},
"keywords": [
"rectangle",
"intersect",
"overlap",
"geometry"
],
"author": "Gagan Bansal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geosquare/rectangles-intersect/issues"
},
"homepage": "https://github.com/geosquare/rectangles-intersect",
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^1.10.0",
"exorcist": "^0.1.6",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
},
"dependencies": {
"check-point-in-rectangle": "^0.1.0",
"line-segments-intersect": "0.0.0"
}
}