-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@adamarthur/spatial-hashmap",
"version": "1.0.3",
"description": "Spatial Hashmap data structure for use in broad phase collision detection",
"keywords": [
"collision",
"collision detection",
"physics",
"spatial hashmap",
"game",
"broad phase",
"spatial hashing"
],
"license": "MIT",
"author": {
"name": "Adam Arthur",
"email": "[email protected]",
"url": "https://adamarthur.io"
},
"repository": {
"type": "git",
"url": "https://github.com/adam-arthur/spatial-hashmap.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/cjs/index.js",
"scripts": {
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json",
"test": "jest",
"test.watch": "jest --watchAll",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}