├── .gitignore ├── .gitmodules ├── .versions ├── LICENSE ├── README.md └── package.js /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "chartist-js"] 2 | path = chartist-js 3 | url = https://github.com/gionkunz/chartist-js.git 4 | -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- 1 | babel-compiler@6.18.2 2 | babel-runtime@1.0.1 3 | caching-compiler@1.1.9 4 | ecmascript@0.7.3 5 | ecmascript-runtime@0.3.15 6 | fourseven:scss@3.8.0_1 7 | meteor@1.6.1 8 | mfpierre:chartist-js@1.7.1 9 | modules@0.8.2 10 | modules-runtime@0.7.10 11 | promise@0.8.8 12 | random@1.0.10 13 | underscore@1.0.10 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Pierre Margueritte 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | meteor-chartist-js 2 | ================== 3 | 4 | Meteor package for the chartist.js library. 5 | 6 | Provide responsive charts easily. 7 | ![Logo](https://camo.githubusercontent.com/94945a321590fdcacb037179ac5ac45795b919dc/68747470733a2f2f7261772e6769746875622e636f6d2f67696f6e6b756e7a2f63686172746973742d6a732f646576656c6f702f736974652f696d616765732f63686172746973742d6775792e676966) 8 | 9 | 10 | ## Usage 11 | ```bash 12 | meteor add mfpierre:chartist-js 13 | ``` 14 | 15 | ## Links 16 | * http://gionkunz.github.io/chartist-js/ 17 | -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: 'mfpierre:chartist-js', 3 | summary: 'Simple responsive charts', 4 | version: '1.7.1', 5 | git: 'https://github.com/mfpierre/meteor-chartist-js' 6 | }); 7 | 8 | Package.onUse(function(api) { 9 | api.versionsFrom('1.0'); 10 | api.use('fourseven:scss@3.8.0'); 11 | api.addFiles([ 12 | 'chartist-js/dist/chartist.js', 13 | 'chartist-js/dist/scss/settings/_chartist-settings.scss', 14 | 'chartist-js/dist/scss/chartist.scss' 15 | ], 'client'); 16 | }); 17 | --------------------------------------------------------------------------------