pngjs
Version:
PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.
77 lines (76 loc) • 1.81 kB
JSON
{
"name": "pngjs",
"version": "7.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": ">=14.19.0"
},
"main": "./lib/png.js",
"directories": {
"lib": "lib",
"example": "examples",
"test": "test"
},
"files": [
"browser.js",
"lib/"
],
"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",
"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/pngjs/pngjs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pngjs/pngjs/issues"
},
"devDependencies": {
"browserify": "17.0.0",
"buffer-equal": "1.0.1",
"connect": "3.7.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"nyc": "15.1.0",
"prettier": "2.8.4",
"puppeteer": "19.7.1",
"serve-static": "1.15.0",
"tap-dot": "2.0.0",
"tape": "5.6.3"
}
}