flowy-engine
Version:
The minimal javascript library to create flowcharts ✨
57 lines (56 loc) • 1.75 kB
JSON
{
"name": "flowy-engine",
"version": "0.1.2",
"description": "The minimal javascript library to create flowcharts ✨",
"author": "Alyssa X",
"license": "MIT",
"private": false,
"main": "flowy.js",
"module": "flowy.mjs",
"unpkg": "flowy.umd.js",
"scripts": {
"dist": "npm version patch && npm run build",
"build": "rimraf dist && babel src -d dist && npm run build:web && cp package.json README.md LICENSE dist/",
"build:web": "rimraf dist && parcel build src/engine/index.css -o flowy-engine -d dist && microbundle build -o dist -i src/engine -f cjs,umd,es",
"build:demo": "rimraf demo && parcel build src/demo/index.html -d demo",
"demo": "rimraf demo && parcel serve src/demo/index.html -d demo --open",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"lint": "standard --fix src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelvh/flowy-engine.git"
},
"keywords": [
"flowchart",
"diagrams",
"javascript",
"javascript-library",
"minimal",
"engine",
"drag-and-drop",
"zapier",
"marketing",
"marketing-automation"
],
"contributors": [
"Alyssa X <hi@alyssax.com> (http://alyssax.com/)",
"Joel Van Horn <joel@joelvanhorn.com> (http://joelvanhorn.com)"
],
"bugs": {
"url": "https://github.com/joelvh/flowy-engine/issues"
},
"homepage": "https://github.com/joelvh/flowy-engine#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"devolution": "^1.1.2",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"standard": "^14.3.1"
}
}