Skip to content

Commit

Permalink
Clean up package.json file (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Koops <jonkoops@gmail.com>
  • Loading branch information
jonkoops authored Jul 25, 2024
1 parent 3ded5bb commit ceccc98
Showing 1 changed file with 34 additions and 29 deletions.
63 changes: 34 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,52 +1,57 @@
{
"name": "base64-js",
"description": "Base64 encoding/decoding in pure JS",
"type": "commonjs",
"version": "1.5.1",
"author": "T. Jameson Little <t.jameson.little@gmail.com>",
"typings": "index.d.ts",
"description": "Base64 encoding/decoding in pure JS",
"keywords": [
"base64"
],
"homepage": "https://github.com/feross/base64-js",
"bugs": {
"url": "https://github.com/feross/base64-js/issues"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"benchmark": "^2.1.4",
"browserify": "^17.0.0",
"standard": "*",
"tape": "^5.4.0"
"license": "MIT",
"author": {
"name": "T. Jameson Little",
"email": "t.jameson.little@gmail.com",
"url": "https://jamesonlittle.com"
},
"homepage": "https://github.com/feross/base64-js",
"keywords": [
"base64"
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"license": "MIT",
"main": "index.js",
"files": [
"base64js.min.js",
"index.d.ts",
"index.js"
],
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/feross/base64-js.git"
"url": "git+https://github.com/feross/base64-js.git"
},
"scripts": {
"build": "browserify -s base64js -r ./ | minify > base64js.min.js",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
"devDependencies": {
"babel-minify": "^0.5.1",
"benchmark": "^2.1.4",
"browserify": "^17.0.0",
"standard": "*",
"tape": "^5.4.0"
}
}

0 comments on commit ceccc98

Please sign in to comment.