Murmur is ICIJ's Design System for Bootstrap 4 and Vue.js
npm install @icij/murmur

Murmur is ICIJ's Design System for Bootstrap 4 and Vue.js
| | Status |
| --: | :-- |
| CI checks |  |
| Code Climate |  |
| NPM version |  |
| NPM downloads |  |
If you are using module bundlers such as Webpack or Rollup, you might need to include the package into your project.
To get started, use NPM or Yarn to get latest version of @icij/murmur.
``bashwith NPM:
npm i @icij/murmur
Then, register Murmur as a pluggin in your app entry point:`js
import Vue from 'vue'
import Murmur from '@icij/murmur'Vue.use(Murmur)
`Now all components will be globally available in your app.
Read the documentation to know how to use them.
Build Setup
` bash
install dependencies
yarnserve documentation with hot reload at localhost:8080
yarn servebuild library and documentation for production with minification
yarn buildbuild library for production with minification
yarn build:libbuild documentation for production with minification
yarn build:docsdeploy the doc on Github Pages
yarn deploypublish a version of the package on NPM registry
yarn publishrun unit tests
yarn test:unit
``