UNPKG

@arcblock/blocklet-registry

Version:

**Blocklets** are reusable building blocks to help developers and community users to build things on [ArcBlock](https://www.arcblock.io) platform. A blocklet serves one and only one purpose, reusability is the core design philosophy of blocklets. Reusabil

45 lines 1.25 kB
{ "name": "kitchen-sink-blocklet", "version": "1.0.0", "title": "Kitchen Sink", "description": "Demo blocklet that showing how blocklet works in ABT node", "keywords": [ "dapp", "demo" ], "author": "polunzh <polunzh@gmail.com> (http://github.com/polunzh)", "repository": { "type": "git", "url": "https://github.com/ArcBlock/abt-node/tree/master/blocklets/blocklet-hooks-demo" }, "blocklet": { "group": "dapp", "color": "primary", "main": "app/index.js", "logo": "logo.png", "provider": "arcblock", "admin_url": "/admin", "config_url": "/config", "public_url": "/", "doc_url": "", "hooks": { "pre-deploy": "npm run build", "post-install": "node app/hooks/post-install.js", "pre-stop": "node app/hooks/pre-stop.js", "pre-install": "node app/hooks/pre-install.js", "pre-start": "node app/hooks/pre-start.js", "pre-uninstall": "node app/hooks/pre-uninstall.js" }, "hookFiles": [ "app/hooks/post-install.js", "app/hooks/pre-stop.js", "app/hooks/pre-install.js", "app/hooks/pre-start.js", "app/hooks/pre-uninstall.js" ] }, "publishConfig": { "access": "public", "directory": "_blocklet/" } }