Skip to content

Commit

Permalink
Merge pull request #23 from interledger/task/dj-no-babel
Browse files Browse the repository at this point in the history
[TASK] Dont require babel
  • Loading branch information
emschwartz committed Feb 9, 2016
2 parents a1adbc2 + af0bc6a commit 0e05819
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"extends": "standard",
"parser": "babel-eslint"
"extends": "standard"
}
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.npmrc
src/
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ The crawler uses APIs on the [`five-bells-ledger`](https://github.com/interledge
This library uses [Iterative Deepening Depth-First Search](https://en.wikipedia.org/wiki/Iterative_deepening_depth-first_search) to find the shortest paths from the sending ledger to the receiving ledger.

The rate quoting client requests quotes from the traders involved in a given path starting with the trader closest to the recipient and working backwards.

## Browser Support

This library can be compiled with [Babel](https://babeljs.io/) using the command `npm run build`. The compiled files will be in the `babel/` folder.
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
"name": "five-bells-pathfind",
"version": "4.2.0",
"description": "Basic pathfinding library",
"main": "dist/index.js",
"main": "src/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src test",
"test": "NODE_ENV=unit node node_modules/.bin/istanbul test -- _mocha -r co-mocha",
"prepublish": "npm run build"
"test": "NODE_ENV=unit node node_modules/.bin/istanbul test -- _mocha -r co-mocha"
},
"repository": {
"type": "git",
Expand All @@ -26,7 +25,6 @@
},
"homepage": "https://github.com/interledger/five-bells-pathfind",
"dependencies": {
"babel-runtime": "^6.3.19",
"bignumber.js": "^2.0.7",
"co": "^4.5.1",
"co-body": "^1.1.0",
Expand All @@ -49,6 +47,7 @@
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.2.0",
"co-mocha": "^1.1.0",
"co-supertest": "0.0.10",
Expand Down

0 comments on commit 0e05819

Please sign in to comment.