-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "js-quadtree",
"version": "3.3.6",
"description": "A simple quadtree implementation for javascript (nodejs or browser with module bundler).",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.js",
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src/**",
"test": "jest",
"prepare": "npm run build"
},
"files": [
"/dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/quadtree-js"
},
"keywords": [
"quadtree",
"qt",
"quadtree.js",
"quadtree javascript"
],
"author": "Corentin Th <corentin.thomasset74+npm@gmail.com> (https://github.com/CorentinTh)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"jest": "^25.5.4",
"rollup": "^2.47.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.9"
},
"dependencies": {}
}