blobs
Version:
Random blob generation and animation
72 lines (71 loc) • 1.93 kB
JSON
{
"name": "blobs",
"version": "2.3.0-beta.2",
"description": "Random blob generation and animation",
"author": "g-harel",
"license": "MIT",
"main": "index.js",
"module": "index.module.js",
"types": "index.d.ts",
"scripts": {
"prepack": "npm run build",
"postpublish": "npm run clean",
"build": "npm run clean && rollup -c rollup.config.mjs",
"clean": "trash '**/*.js' '**/*.js.map' '**/*.d.ts' '!**/node_modules/**/*' '!rollup.config.mjs'",
"fmt": "prettier --list-different --write --ignore-path .gitignore '**/*.{js,ts,md,html}' '!index.html'",
"demo:dev": "parcel demo/index.html --open",
"demo:build": "parcel build demo/index.html && move-file dist/index.html index.html",
"test": "jest",
"test:playground": "parcel internal/animate/testing/index.html --open"
},
"dependencies": {
"simplex-noise": "^4.0.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "25.1.4",
"jest": "29.3.1",
"jest-canvas-mock": "2.4.0",
"move-file-cli": "2.0.0",
"parcel": "1.12.3",
"parcel-plugin-inliner": "1.0.14",
"prettier": "2.0.2",
"rollup": "3.8.1",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-typescript2": "0.34.1",
"rollup-plugin-uglify": "6.0.1",
"trash-cli": "3.0.0",
"ts-jest": "29.0.3",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"homepage": "https://blobs.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/g-harel/blobs"
},
"bugs": {
"url": "https://github.com/g-harel/blobs/issues"
},
"keywords": [
"random",
"blob",
"svg",
"path",
"canvas",
"animation"
],
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock"
]
}
}