-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
31 lines (31 loc) · 1.15 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
{
"name": "intersects",
"version": "2.7.1",
"description": "a simple collection of 2d collision/intersects functions, supporting points, circles, circle outlines (circumference), lines, axis-aligned boxes, and polygons (convex)",
"main": "index.js",
"scripts": {
"test": "budo docs/code.js:index.js --dir docs --live",
"build": "browserify docs/code.js -o docs/index.js",
"prepublishOnly": "yarn run pkg && yarn run build",
"pkg-browserify": "browserify umd.js -o umd/intersects.js",
"pkg-min": "uglifyjs umd/intersects.js -mc -o umd/intersects.min.js",
"pkg": "yarn run pkg-browserify && yarn run pkg-min && cp umd/intersects.min.js docs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/davidfig/intersects.git"
},
"author": "david figatner",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidfig/intersects/issues"
},
"homepage": "https://github.com/davidfig/intersects#readme",
"devDependencies": {
"calc-fontsize": "^1.1.0",
"highlight.js": "^10.4.1",
"pixi-ease": "^1.3.0",
"pixi.js": "^5.0.2",
"yy-random": "^1.8.0"
}
}