UNPKG

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