File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ language : node_js
2+ before_script :
3+ - npm install -g codeclimate-test-reporter
4+ node_js :
5+ - " 0.10"
6+ - " 0.12"
7+ - " 4"
8+ - " 5"
9+ after_script :
10+ - codeclimate-test-reporter < coverage/lcov.info
11+ - coveralls < coverage/lcov.info
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ JavaScript interpreter for [JSONScript](https://github.com/JSONScript/jsonscript
44
55It is work in progress.
66
7+ [ ![ Build Status] ( https://travis-ci.org/epoberezkin/jsonscript-js.svg?branch=master )] ( https://travis-ci.org/epoberezkin/jsonscript-js )
8+ [ ![ npm version] ( https://badge.fury.io/js/jsonscript-js.svg )] ( https://www.npmjs.com/package/jsonscript-js )
9+ [ ![ Code Climate] ( https://codeclimate.com/github/epoberezkin/jsonscript-js/badges/gpa.svg )] ( https://codeclimate.com/github/epoberezkin/jsonscript-js )
10+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/epoberezkin/jsonscript-js/badge.svg?branch=master )] ( https://coveralls.io/github/epoberezkin/jsonscript-js?branch=master )
11+
712
813## Install
914
Original file line number Diff line number Diff line change 11{
22 "name" : " jsonscript-js" ,
3- "version" : " 0.1.2 " ,
3+ "version" : " 0.1.3 " ,
44 "description" : " JavaScript interpreter for JSONScript" ,
55 "main" : " lib/jsonscript.js" ,
66 "scripts" : {
7- "test" : " mocha spec/*.spec.js -R spec" ,
7+ "test" : " npm run test-cov" ,
8+ "test-spec" : " mocha spec/*.spec.js -R spec" ,
89 "test-cov" : " istanbul cover -x 'spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec" ,
910 "test-debug" : " mocha spec/*.spec.js --debug-brk -R spec"
1011 },
2829 "ajv" : " ^3.7.1" ,
2930 "dot" : " ^1.0.3" ,
3031 "json-pointer" : " ^0.3.1" ,
31- "jsonscript" : " ^0.1.2 "
32+ "jsonscript" : " ^0.1.3 "
3233 },
3334 "devDependencies" : {
3435 "istanbul" : " ^0.4.2" ,
35- "jsonscript-test" : " ^0.1.0" ,
36- "jsonscript-test-suite" : " ^0.1.0" ,
37- "mocha" : " ^2.4.5"
36+ "jsonscript-test" : " ^0.1.1" ,
37+ "jsonscript-test-suite" : " ^0.1.1" ,
38+ "mocha" : " ^2.4.5" ,
39+ "pre-commit" : " ^1.1.2"
3840 }
3941}
You can’t perform that action at this time.
0 commit comments