Skip to content

Commit d438c1e

Browse files
committed
adding package.json
1 parent 8d03823 commit d438c1e

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

package.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "voxelize",
3+
"version": "0.0.0",
4+
"description": "Voxelizes a mesh into an ndarray",
5+
"main": "index.js",
6+
"directories": {
7+
"example": "example"
8+
},
9+
"dependencies": {
10+
"ndarray": "~0.2.4",
11+
"rle-ndarray": "~0.0.0",
12+
"rle-rasterize": "~0.0.6"
13+
},
14+
"devDependencies": {
15+
"bunny": "~1.0.0",
16+
"tape": "~1.0.4"
17+
},
18+
"scripts": {
19+
"test": "tap test/*.js"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git://github.com/mikolalysenko/voxelize.git"
24+
},
25+
"keywords": [
26+
"voxelize",
27+
"ndarray",
28+
"mesh"
29+
],
30+
"author": "Mikola Lysenko",
31+
"license": "MIT",
32+
"readmeFilename": "README.md",
33+
"gitHead": "8d03823cf0a07f62afb8778e98128e3b43007137",
34+
"bugs": {
35+
"url": "https://github.com/mikolalysenko/voxelize/issues"
36+
}
37+
}

test/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//FIXME: test this somehow

0 commit comments

Comments
 (0)