Skip to content

Commit 37332a8

Browse files
committed
Add mocha dev dependency and travis ci config
1 parent 964c75f commit 37332a8

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: node_js
2+
node_js:
3+
- 0.10
4+
- 0.11
5+
- 0.12
6+
- 4.0
7+
- 4.1
8+
- 4.2
9+
- 4.3
10+
- 5.0
11+
- 5.1
12+
- 5.2
13+
- 5.3
14+
- 5.4
15+
- 5.5
16+
- 5.6

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# About json2json
1+
# About json2json [![Build Status](https://travis-ci.org/joelvh/json2json.svg?branch=master)](https://travis-ci.org/joelvh/json2json)
22

33
Transforms one JSON object structure to another structure as defined by template rules.
44
Ideal for transforming JSON retrieved from web services to be used the way you need it in your application.

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
{ "coffee-script" : ">=1.7.0"
1616
, "sysmo" : ">=0.0.11"
1717
}
18-
, "devDependencies": { "chai": "^3.5.0" }
18+
, "devDependencies":
19+
{ "chai": "^3.5.0"
20+
, "mocha": "^2.4.5"
21+
}
1922
, "engines" : { "node" : ">=0.1.97" }
2023
, "licenses" : []
2124
}

0 commit comments

Comments
 (0)