pngjs/package.json
dependabot-preview[bot] bdcc276351
Bump eslint from 6.8.0 to 7.0.0 (#156)
Bumps [eslint](https://github.com/eslint/eslint) from 6.8.0 to 7.0.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v6.8.0...v7.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-19 07:30:19 +02:00

73 lines
1.8 KiB
JSON

{
"name": "pngjs",
"version": "5.0.0",
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
"contributors": [
"Alexandre Paré",
"Gaurav Mali",
"Gusts Kaksis",
"Kuba Niegowski",
"Luke Page",
"Pietajan De Potter",
"Steven Sojka",
"liangzeng",
"Michael Vogt",
"Xin-Xin Wang",
"toriningen",
"Eugene Kulabuhov"
],
"homepage": "https://github.com/lukeapage/pngjs",
"keywords": [
"PNG",
"decoder",
"encoder",
"js-png",
"node-png",
"parser",
"png",
"png-js",
"png-parse",
"pngjs"
],
"engines": {
"node": ">=10.13.0"
},
"main": "./lib/png.js",
"directories": {
"lib": "lib",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "yarn prepublish",
"prepublish": "yarn browserify",
"browserify": "browserify lib/png.js --standalone png > browser.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary tape test/*-spec.js nolarge",
"test": "yarn lint && yarn prettier:check && tape test/*-spec.js | tap-dot && node test/run-compare",
"lint": "eslint .",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git://github.com/lukeapage/pngjs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeapage/pngjs/issues"
},
"devDependencies": {
"browserify": "16.5.1",
"buffer-equal": "1.0.0",
"codecov": "3.7.0",
"connect": "3.7.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"nyc": "15.0.1",
"prettier": "2.0.5",
"puppeteer": "3.0.2",
"serve-static": "1.14.1",
"tap-dot": "2.0.0",
"tape": "5.0.0"
}
}