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