Doodle3D-Slicer/package.json

37 lines
1.2 KiB
JSON
Raw Normal View History

2015-07-26 15:32:10 +02:00
{
2017-07-20 16:13:20 +02:00
"name": "@doodle3d/doodle3d-slicer",
2017-09-13 11:45:15 +02:00
"version": "0.0.10",
2017-07-20 11:20:43 +02:00
"description": "JavaScript gcode slicer, Intended to use with the Doodle3D WiFi-Box # Usage",
"main": "lib/index.js",
"module": "module/index.js",
"esnext": "src/index.js",
"scripts": {
2017-07-20 22:34:36 +02:00
"prepare": "npm run build",
2017-07-20 11:42:46 +02:00
"build": "npm run build:main && npm run build:main:settings && npm run build:module && npm run build:module:settings ",
2017-07-20 11:20:43 +02:00
"build:main": "BABEL_ENV=main babel src -s -d lib",
2017-07-20 11:42:46 +02:00
"build:module": "BABEL_ENV=module babel src -s -d module",
"build:main:settings": "cp -r src/settings lib",
"build:module:settings": "cp -r src/settings module"
2017-07-11 13:49:21 +02:00
},
2017-07-20 11:51:48 +02:00
"dependencies": {
2017-09-13 11:43:25 +02:00
"@doodle3d/clipper-js": "^1.0.6",
2017-07-20 12:09:23 +02:00
"three": "^0.83.0"
2017-07-20 11:51:48 +02:00
},
2016-08-26 21:43:46 +02:00
"devDependencies": {
2017-07-20 11:20:43 +02:00
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.24.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Doodle3D/Doodle3D-Slicer.git"
},
"author": "",
2017-07-31 10:31:26 +02:00
"license": "UNLICENSED",
"private": true,
2017-07-20 11:20:43 +02:00
"bugs": {
"url": "https://github.com/Doodle3D/Doodle3D-Slicer/issues"
},
"homepage": "https://github.com/Doodle3D/Doodle3D-Slicer#readme"
2015-07-26 15:32:10 +02:00
}