56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "data-uri-to-buffer",
|
|
"version": "3.0.1",
|
|
"description": "Generate a Buffer instance from a Data URI string",
|
|
"main": "dist/src/index.js",
|
|
"types": "dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/src"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "mocha --reporter spec dist/test/*.js",
|
|
"test-lint": "eslint src --ext .js,.ts",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/TooTallNate/node-data-uri-to-buffer.git"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"keywords": [
|
|
"data",
|
|
"uri",
|
|
"datauri",
|
|
"data-uri",
|
|
"buffer",
|
|
"convert",
|
|
"rfc2397",
|
|
"2397"
|
|
],
|
|
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/TooTallNate/node-data-uri-to-buffer/issues"
|
|
},
|
|
"homepage": "https://github.com/TooTallNate/node-data-uri-to-buffer",
|
|
"devDependencies": {
|
|
"@types/es6-promisify": "^5.0.0",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^10.5.3",
|
|
"@typescript-eslint/eslint-plugin": "1.6.0",
|
|
"@typescript-eslint/parser": "1.1.0",
|
|
"eslint": "5.16.0",
|
|
"eslint-config-airbnb": "17.1.0",
|
|
"eslint-config-prettier": "4.1.0",
|
|
"eslint-import-resolver-typescript": "1.1.1",
|
|
"eslint-plugin-import": "2.16.0",
|
|
"eslint-plugin-jsx-a11y": "6.2.1",
|
|
"eslint-plugin-react": "7.12.4",
|
|
"mocha": "^6.2.0",
|
|
"typescript": "^3.5.3"
|
|
}
|
|
}
|