Doodle3D-Slicer/package.json

50 lines
1.7 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-15 10:49:30 +02:00
"version": "0.0.13",
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 12:29:28 +02:00
"@doodle3d/clipper-js": "^1.0.7",
2017-11-11 20:23:45 +01:00
"proptypes": "^1.1.0",
"react-jss": "^7.2.0",
"three": "^0.83.0",
"react": "^16.1.0"
2017-07-20 11:51:48 +02:00
},
2016-08-26 21:43:46 +02:00
"devDependencies": {
2017-11-11 20:23:45 +01:00
"babel-plugin-inline-import": "^2.0.6",
"babel-preset-stage-0": "^6.24.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1"
2017-07-20 11:20:43 +02:00
},
"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
}