-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
44
45
46
{
"name": "bounded-kd-tree",
"version": "0.0.2",
"description": "",
"main": "dist",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src",
"test": "jest ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rymdkraftverk/bounded-kd-tree"
},
"keywords": [
"kd",
"tree"
],
"author": "rymdkraftverk",
"license": "ISC",
"bugs": {
"url": "https://github.com/rymdkraftverk/bounded-kd-tree/issues"
},
"homepage": "https://github.com/rymdkraftverk/bounded-kd-tree",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-prefer-arrow": "^1.1.5",
"eslint-plugin-ramda": "^2.5.1",
"babel-preset-minify": "^0.5.0",
"jest": "^24.8.0"
},
"dependencies": {
"ramda": "^0.26.1"
}
}