CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json63 linesDownload Raw Back to data-uri-to-buffer
1{2  "name": "data-uri-to-buffer",3  "version": "4.0.1",4  "description": "Generate a Buffer instance from a Data URI string",5  "type": "module",6  "exports": "./dist/index.js",7  "main": "./dist/index.js",8  "types": "./dist/index.d.ts",9  "files": [10    "dist",11    "src"12  ],13  "scripts": {14    "build": "tsc",15    "test": "jest",16    "prepublishOnly": "npm run build"17  },18  "repository": {19    "type": "git",20    "url": "git://github.com/TooTallNate/node-data-uri-to-buffer.git"21  },22  "engines": {23    "node": ">= 12"24  },25  "keywords": [26    "data",27    "uri",28    "datauri",29    "data-uri",30    "buffer",31    "convert",32    "rfc2397",33    "2397"34  ],35  "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",36  "license": "MIT",37  "bugs": {38    "url": "https://github.com/TooTallNate/node-data-uri-to-buffer/issues"39  },40  "homepage": "https://github.com/TooTallNate/node-data-uri-to-buffer",41  "devDependencies": {42    "@types/jest": "^27.0.2",43    "@types/node": "^12.20.36",44    "jest": "^27.3.1",45    "ts-jest": "^27.0.7",46    "typescript": "^4.4.4"47  },48  "jest": {49    "preset": "ts-jest",50    "globals": {51      "ts-jest": {52        "diagnostics": false,53        "isolatedModules": true54      }55    },56    "verbose": false,57    "testEnvironment": "node",58    "testMatch": [59      "<rootDir>/test/**/*.test.ts"60    ]61  }62}63