Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / ibrik / README.md
1 ## Ibrik - CoffeeScript meets Istanbul
2
3 [![Build Status](https://travis-ci.org/Constellation/ibrik.svg?branch=master)](https://travis-ci.org/Constellation/ibrik)
4 [![Dependency Status](https://david-dm.org/Constellation/ibrik.svg)](https://david-dm.org/Constellation/ibrik)
5 [![devDependency Status](https://david-dm.org/Constellation/ibrik/dev-status.svg)](https://david-dm.org/Constellation/ibrik#info=devDependencies)
6
7
8 Ibrik ([ibrik](http://github.com/Constellation/ibrik)) is
9 code coverage tool for CoffeeScript.
10 It uses [istanbul](https://github.com/gotwarlost/istanbul) and CoffeeScript sourceMaps. Internally, it uses Mozilla JS AST as its IR.
11
12
13 ### Install
14
15 ibrik can be used in in a Node.js application via the package manager:
16
17     npm install -g ibrik
18
19
20 ### Usage
21
22 like this
23 ```sh
24 ibrik cover script.coffee
25 istanbul report html
26 open coverage/index.html
27 ```
28
29 ### License
30
31 Copyright (C) 2012 [Yusuke Suzuki](http://github.com/Constellation)
32  (twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors.
33
34 Redistribution and use in source and binary forms, with or without
35 modification, are permitted provided that the following conditions are met:
36
37   * Redistributions of source code must retain the above copyright
38     notice, this list of conditions and the following disclaimer.
39
40   * Redistributions in binary form must reproduce the above copyright
41     notice, this list of conditions and the following disclaimer in the
42     documentation and/or other materials provided with the distribution.
43
44 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
45 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
48 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
49 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
50 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
51 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
53 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.