forked from potree/potree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "@zeainc/zea-potree",
"filename": "zea-potree",
"library": "ZeaPotree",
"private": false,
"version": "4.0.1",
"description": "Zea Potree is a plug-in for Zea Engine that enables rendering of large point clouds .",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"files": [
"dist/"
],
"keywords": [
"Zea",
"Potree",
"Point clouds"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -w -c",
"dev": "npm-run-all --parallel build:watch start:watch",
"prepare": "yarn build",
"start": "es-dev-server",
"start:watch": "es-dev-server --app-index testing-e2e/index.html --open --watch",
"dist": "yarn publish --access=public",
"docs": "adg --config adg.config.json",
"docs-w": "adg -w --config=adg.config.json",
"testing-server": "node testing-server/index.js",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"testBrowser": "karma start --single-run karma.conf.js",
"release": "standard-version"
},
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"binaryheap": "^0.0.3",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-util": "^3.0.8",
"through": "~2.3.4",
"webpack": "^4.41.2",
"worker-loader": "^2.0.0"
},
"author": "Philip Taylor",
"license": "MIT",
"devDependencies": {
"@zeainc/jsdocs2md": "^0.0.7",
"@zeainc/zea-engine": "^4.15.0",
"docsify-cli": "^4.4.1",
"es-dev-server": "^2.1.0",
"eslint": "^7.7.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^2.10.9",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-web-worker-loader": "^1.3.0",
"standard-version": "^9.0.0",
"webpack-cli": "^3.3.9"
},
"standard-version": {
"skip": {
"commit": true
}
}
}