This repository was archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.58 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.58 KB
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
{
"name": "@elmarquez/four",
"version": "0.3.5",
"description": "UI components for web based CAD",
"authors": [
"Davis Marques <dmarq.ezz@gmail.com>"
],
"license": "MIT",
"main": "dist/four.js",
"type": "module",
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.20.0",
"esm": "^3.2.25",
"jasmine": "^3.6.4",
"jsdoc": "^3.6.6",
"serve": "^11.3.2",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
},
"scripts": {
"build": "webpack",
"clean": "rm -fr dist/*",
"docs": "./node_modules/.bin/jsdoc -d dist/docs dist/four.js",
"lint": "./node_modules/.bin/eslint src/**/*.js",
"postversion": "git push origin HEAD && git push origin --tags",
"preversion": "npm run clean",
"release": "npm version patch -m 'Release v%s'",
"serve": "./node_modules/.bin/serve dist/docs",
"test": "./node_modules/.bin/jasmine --config=jasmine.json",
"version": "npm run build && git add --all --force dist"
},
"dependencies": {
"@tweenjs/tween.js": "*",
"quadtree-lib": "~0.1.2",
"spatialhash": "@elmarquez/spatialhash"
},
"peerDependencies": {
"three": "^0.127.0"
},
"keywords": [
"3D",
"CAD",
"computer aided design",
"design",
"fab",
"fabrication",
"lidar",
"maker",
"model",
"parametric",
"search",
"selection",
"shape",
"three.js",
"threejs",
"webgl"
]
}