Skip to content

Commit acc240f

Browse files
committed
bump versions
1 parent 1620eef commit acc240f

3 files changed

Lines changed: 24 additions & 6 deletions

File tree

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ JavaScript interpreter for [JSONScript](https://github.com/JSONScript/jsonscript
44

55
It 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

package.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
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
},
@@ -28,12 +29,13 @@
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
}

0 commit comments

Comments
 (0)