mirror of
https://github.com/jimeh/node-base58.git
synced 2026-02-19 07:36:40 +00:00
- Require node 6 at a minimum to support the newer ES features. Node version functionality determined via https://node.green. - Update dev dependencies to their latest versions. Mocha 3.4 relied on a version of growl with a known vulnerability. - Fix the keywords section, this field is actually an array. - Update eslint syntax to ES6.
41 lines
851 B
JSON
41 lines
851 B
JSON
{
|
|
"name": "base58",
|
|
"version": "1.0.1",
|
|
"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 test"
|
|
}
|
|
}
|