This repository has been archived by the owner on Mar 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "octree-helper",
"version": "1.1.6",
"description": "An octree visualization tool for three.js.",
"homepage": "https://github.com/vanruesc/octree-helper",
"main": "build/octree-helper.js",
"module": "build/octree-helper.esm.js",
"sideEffects": false,
"license": "Zlib",
"keywords": [
"octree",
"helper",
"three.js",
"3d",
"geometry",
"mesh",
"render",
"visualize"
],
"author": {
"name": "Raoul van Rüschen",
"email": "vanruesc@outlook.de"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/octree-helper.git"
},
"bugs": {
"url": "https://github.com/vanruesc/octree-helper/issues"
},
"files": [
"build"
],
"scripts": {
"ava": "ava",
"build": "rollup -c",
"build:production": "cross-env NODE_ENV=production npm run build",
"watch": "rollup -c -w",
"doc": "rimraf docs && esdoc",
"pretest": "npm run build:production",
"test": "ava",
"prepack": "npm test && npm run doc"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
],
"require": [
"esm"
]
},
"eslintConfig": {
"extends": "delta"
},
"dependencies": {
"sparse-octree": "6.x.x"
},
"peerDependencies": {
"three": ">= 0.110.0 < 0.119.0"
},
"devDependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@rollup/plugin-babel": "5.x.x",
"@rollup/plugin-node-resolve": "8.x.x",
"ava": "3.x.x",
"cross-env": "7.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint-config-delta": "1.x.x",
"esm": "3.x.x",
"iterator-result": "1.x.x",
"math-ds": "1.x.x",
"rimraf": "3.x.x",
"rollup": "2.x.x",
"rollup-plugin-eslint": "6.x.x",
"rollup-plugin-terser": "6.x.x",
"three": "0.118.x"
}
}