-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@elmarquez/spatialhash",
"version": "0.1.6",
"description": "Fast 2D/3D spatial indexing and search",
"main": "dist/spatialhash.mjs",
"directories": {
"src": "src",
"test": "test"
},
"private": false,
"type": "module",
"scripts": {
"build": "./node_modules/.bin/webpack",
"clean": "rm -fr dist/*; rm -fr ",
"lint": "./node_modules/.bin/eslint src/**/*.mjs",
"postversion": "git push origin HEAD && git push origin --tags",
"preversion": "npm run clean",
"release": "npm version patch -m 'Release v%s'",
"test": "./node_modules/.bin/jasmine --config=./test/support/jasmine.json",
"version": "npm run build && git add --all --force dist"
},
"repository": {
"type": "git",
"url": "https://github.com/elmarquez/spatialhash.js.git"
},
"author": "Davis Marques <dmarq.ezz@gmail.com> (http://www.davismarques.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/elmarquez/spatialhash.js/issues"
},
"homepage": "https://github.com/elmarquez/spatialhash.js",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.12.16",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.20.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jasmine": "^4.1.2",
"esm": "^3.2.25",
"jasmine": "^3.6.4",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
},
"peerDependencies": {
"three": "*"
},
"keywords": [
"three",
"threejs",
"3D",
"search",
"spatial",
"hash",
"index"
]
}