Skip to content

Commit

Permalink
(feature) build for browser, bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
f3rno committed Nov 9, 2018
1 parent 6258324 commit 212ad47
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [
"env"
],
"plugins": [
"transform-regenerator",
"transform-object-rest-spread"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ source/images
todo
package-lock.json
.env
dist/
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "bfx-api-node-util",
"version": "1.0.0",
"version": "1.0.1",
"description": "Utilities for the Bitfinex node API",
"engines": {
"node": ">=7"
},
"main": "index.js",
"main": "./dist/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "NODE_ENV=test mocha -b --recursive"
"unit": "NODE_ENV=test mocha -b --recursive",
"build": "babel -q ./index.js -d ./dist && babel -q ./lib -d ./dist/lib && copy package.json dist"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -39,6 +40,10 @@
"standard": "^10.0.2"
},
"dependencies": {
"bignumber.js": "^6.0.0"
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bignumber.js": "^6.0.0",
"copy": "^0.3.2"
}
}

0 comments on commit 212ad47

Please sign in to comment.