-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 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
36
37
38
39
40
41
42
43
44
{
"name": "polygon-collision",
"version": "0.0.3",
"description": "polygon collision 2d circle",
"main": "built/index.js",
"scripts": {
"test": "mocha -r ts-node/register ./test/*.test.ts",
"build": "node ./node_modules/gulp/bin/gulp.js build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keifergu/polygon-collision.git"
},
"keywords": [
"polygon",
"collision",
"2d",
"circle"
],
"author": "Keifer Gu",
"license": "MIT",
"bugs": {
"url": "https://github.com/keifergu/polygon-collision/issues"
},
"homepage": "https://github.com/keifergu/polygon-collision#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/rewire": "^2.5.27",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rewire": "^2.5.2",
"ts-node": "^2.0.0"
},
"dependencies": {
"gulp": "^3.9.1",
"typescript": "^2.1.5",
"gulp-typescript": "^3.1.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}