pngjs/package.json
2015-08-06 13:08:58 +01:00

58 lines
1.3 KiB
JSON

{
"name": "pngjs2",
"version": "0.0.3",
"description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
"contributors": [
"Alexandre Paré",
"Gaurav Mali",
"Kuba Niegowski",
"Luke Page",
"Pietajan De Potter",
"Steven Sojka",
"liangzeng"
],
"homepage": "https://github.com/lukeapage/pngjs2",
"keywords": [
"PNG",
"decoder",
"encoder",
"js-png",
"node-png",
"parser",
"png",
"png-js",
"png-parse",
"pngjs"
],
"engines": {
"node": "0.10.x"
},
"main": "./lib/png.js",
"directories": {
"example": "examples"
},
"scripts": {
"coverage": "istanbul -- cover node_modules/tape/bin/tape test/*-spec.js nolarge",
"coverage-report": "npm run coverage && istanbul report html",
"test": "tape test/*-spec.js nolarge | tap-dot && node test/run-compare",
"lint": "eslint lib"
},
"repository": {
"type": "git",
"url": "git://github.com/lukeapage/pngjs2.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeapage/pngjs2/issues"
},
"devDependencies": {
"connect": "^3.4.0",
"coveralls": "^2.11.3",
"eslint": "^1.0.0",
"istanbul": "^0.3.17",
"phantomjs": "^1.9.17",
"serve-static": "^1.10.0",
"tap-dot": "^1.0.0",
"tape": "^4.0.2"
}
}