1
0
mirror of https://github.com/kettek/png-js synced 2025-03-14 06:24:30 -07:00
png-js/package.json

34 lines
895 B
JSON
Raw Permalink Normal View History

2019-01-15 00:58:38 -08:00
{
2020-05-12 21:26:45 -07:00
"name": "png-js-palettized",
2020-05-12 21:25:24 -07:00
"description": "A PNG decoder that supports palette manipulation.",
2020-05-12 21:26:45 -07:00
"version": "1.2.1",
2019-01-15 00:58:38 -08:00
"main": "dist/png-js.cjs.js",
"module": "dist/png-js.es.js",
2020-05-12 21:25:24 -07:00
"repository": "github:kettek/png-js",
2019-01-15 00:58:38 -08:00
"browser": {
"./dist/png-js.es.js": "./dist/png-js.browser.es.js",
"./dist/png-js.cjs.js": "./dist/png-js.browser.cjs.js"
},
"author": {
2019-01-23 18:19:17 -08:00
"name": "Ketchetwahmeegwun T. Southall",
"email": "kts@kettek.net",
"url": "https://kettek.net/"
2019-01-15 00:58:38 -08:00
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build"
2019-01-15 00:58:38 -08:00
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"rollup": "^0.52.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-ignore": "^1.0.3",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^3.0.0"
},
"files": [
"dist"
]
}