-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "geo-tree",
"version": "1.0.66",
"description": "High performance library for geographical map-related operations",
"license": "MIT",
"author": "Roman Kaspar <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:salsita/geo-tree.git"
},
"bugs": {
"url": "https://github.com/salsita/geo-tree/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"main": "src/geo-tree.js",
"scripts": {
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "jest test/*.spec.js --coverage"
},
"keywords": [
"geographical",
"map",
"tree",
"geo-tree",
"red-black tree",
"Z-order curve",
"node.js"
],
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"jest": "26.6.3"
},
"dependencies": {},
"renovate": {
"extends": [
"config:base"
],
"bumpVersion": "patch",
"automerge": true,
"major": {
"automerge": false
}
},
"jest": {
"testEnvironment": "node"
}
}