Files
node-base58/package.json
David McCanney 2fa51650b8 Update version number
- Update version number to 2.0.0 since changes affect backwards
  compatibility with node v4.
- Update Travis config to allow node module caching.
2018-09-28 23:07:30 +01:00

41 lines
846 B
JSON

{
"name": "base58",
"version": "2.0.0",
"keywords": [
"base58, flickr"
],
"description": "Flickr Flavored Base58 Encoding and Decoding",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jimeh/node-base58/master/LICENSE.md"
}
],
"author": {
"name": "Jim Myhrberg",
"email": "contact@jimeh.me"
},
"contributors": [
"Louis Buchbinder github@louisbuchbinder.com"
],
"repository": {
"type": "git",
"url": "https://github.com/jimeh/node-base58.git"
},
"main": "./src/base58",
"engines": {
"node": ">= 6"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-prettier": "^2.7.0",
"mocha": "^5.2.0",
"prettier": "^1.14.3"
},
"scripts": {
"lint": "eslint . --fix",
"test": "mocha"
}
}