-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "voxelizer",
"version": "1.0.0",
"description": "Voxelization for 3D models",
"main": "lib/voxelizer.js",
"module": "src/index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "jest --passWithNoTests",
"coverage": "npm test -- --coverage --coverageReporters=lcov",
"prepare": "npm run build",
"example": "browser-sync start --server --files 'examples' 'lib' --startPath ''examples/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/andstor/voxelizer.git"
},
"keywords": [
"voxelization",
"voxel"
],
"author": {
"name": "André Storhaug",
"email": "[email protected]",
"url": "https://github.com/andstor"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/andstor/voxelizer/issues"
},
"files": [
"/lib",
"/src"
],
"homepage": "https://github.com/andstor/voxelizer#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.4.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"canvas": "^2.6.1",
"coveralls": "^3.0.9",
"jest": "^25.4.0",
"three": "^0.x.x",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"binvox": "^1.1.0",
"ndarray": "^1.0.19",
"ndarray-fill": "^1.0.2",
"ndarray-unpack": "^1.0.0",
"three-mesh-bvh": "^0.2.0",
"xml2js": "^0.4.23"
},
"peerDependencies": {
"three": "^0.x.x"
}
}