forked from argonaut-io/argonaut-hs
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
17 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- 0.10 | ||
env: | ||
- TAG=v0.7.0 | ||
- 0.12 | ||
install: | ||
- npm install -g bower gulp purescript | ||
- npm install -g bower gulp | ||
- npm install && bower install | ||
script: | ||
- gulp test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# PureScript-Argonaut | ||
# purescript-argonaut | ||
|
||
[![Latest release](http://img.shields.io/bower/v/purescript-argonaut.svg)](https://github.com/purescript-contrib/purescript-argonaut/releases) | ||
[![Build Status](https://travis-ci.org/purescript-contrib/purescript-argonaut.svg)](https://travis-ci.org/purescript-contrib/purescript-argonaut) | ||
[![Dependency Status](https://www.versioneye.com/user/projects/563a42e91d47d40015000890/badge.svg?style=flat)](https://www.versioneye.com/user/projects/563a42e91d47d40015000890) | ||
[![Maintainer: slamdata](https://img.shields.io/badge/maintainer-slamdata-lightgrey.svg)](http://github.com/slamdata) | ||
|
||
## Deprecated | ||
This library bundles together the following: | ||
|
||
This library have been split to | ||
|
||
- [purescript-argonaut-core](https://github.com/purescript-contrib/purescript-argonaut-core) - basic parsing, printing, folding and types for `JSON` | ||
- [purescript-argonaut-traversals](https://github.com/purescript-contrib/purescript-argonaut-traversals) - `JCursor`, prisms and traversals for `JSON` | ||
- [purescript-argonaut-core](https://github.com/purescript-contrib/purescript-argonaut-core) - basic parsing, printing, folding and types for `Json` | ||
- [purescript-argonaut-traversals](https://github.com/purescript-contrib/purescript-argonaut-traversals) - `JCursor`, prisms and traversals for `Json` | ||
- [purescript-argonaut-codecs](https://github.com/purescript-contrib/purescript-argonaut-codecs) - `EncodeJson` and `DecodeJson` classes, their instances | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
{ | ||
"name": "purescript-argonaut", | ||
"version": "0.3.0", | ||
"description": "PureScript version of Argonaut", | ||
"license": "MIT", | ||
"devDependencies": {}, | ||
"dependencies": { | ||
"private": true, | ||
"devDependencies": { | ||
"gulp": "^3.9.0", | ||
"gulp-purescript": "^0.5.0", | ||
"gulp-purescript": "^0.7.0", | ||
"gulp-run": "^1.6.8", | ||
"purescript": "^0.7.5", | ||
"run-sequence": "^1.1.1" | ||
} | ||
} |