-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
{
"name": "ktree",
"version": "3.0.3",
"description": "Efficient tree search in k-dimensions",
"main": "dist/ktree.cjs.js",
"browser": "dist/ktree.umd.js",
"module": "dist/ktree.es.js",
"scripts": {
"test": "nyc babel-node test",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"build": "NODE_ENV=rollup npx rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caub/ktree.git"
},
"keywords": [
"closest",
"search",
"quadtree",
"octree",
"tree"
],
"author": "caub",
"license": "ISC",
"bugs": {
"url": "https://github.com/caub/ktree/issues"
},
"homepage": "https://github.com/caub/ktree#readme",
"nyc": {
"extensions": [
".mjs"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/node": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"codecov": "^3.0.2",
"color-name-list": "^3.39.0",
"color-names": "^2.0.0",
"color-tf": "^5.1.1",
"colorutil": "^4.1.2",
"nyc": "^11.8.0",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^4.0.0-beta.4"
},
"dependencies": {}
}