-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
36 lines (36 loc) · 980 Bytes
/
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
{
"name": "parse-magica-voxel",
"version": "2.1.2",
"description": "Parse MagicaVoxel .vox format to JS objects",
"main": "src/index.js",
"scripts": {
"test": "node ./example/index.js"
},
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"repository": {
"type": "git",
"url": "git+https://github.com/kevzettler/parse-magica-voxel.git"
},
"keywords": [
"Vox",
"MagicaVoxel",
"Magica",
"Voxel",
"voxel",
".vox",
"loader",
"parser"
],
"author": "kevzettler",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/kevzettler/parse-magica-voxel/issues"
},
"homepage": "https://github.com/kevzettler/parse-magica-voxel#readme",
"dependencies": {
"buffer": "^5.0.2",
"debug": "^4.1.1",
"is-buffer": "^1.1.4"
},
"devDependencies": {}
}