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

45 lines
1.1 KiB
JSON
Raw Normal View History

2019-01-15 00:58:38 -08:00
{
"name": "@mindfire/png-js",
"description": "A PNG decoder in ES6 JavaScript.",
"version": "1.2.0",
"main": "dist/png-js.cjs.js",
"module": "dist/png-js.es.js",
"browser": {
"./dist/png-js.es.js": "./dist/png-js.browser.es.js",
"./dist/png-js.cjs.js": "./dist/png-js.browser.cjs.js"
},
"author": {
"name": "Mindfire Games, LLC",
"email": "founders@mindfire.games",
"url": "https://mindfire.games/"
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test:size": "bundlesize"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"bundlesize": "^0.17.0",
"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"
],
"bundlesize": [
{
"path": "./dist/png-js.cjs.min.js",
"maxSize": "2kB"
},
{
"path": "./dist/png-js.browser.cjs.min.js",
"maxSize": "2kB"
}
]
}