You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.3 KiB

8 years ago
{
"name": "merge-images",
7 years ago
"version": "1.0.5",
"description": "Easily compose images together without messing around with canvas",
8 years ago
"main": "dist/index.umd.js",
"module": "dist/index.es2015.js",
8 years ago
"scripts": {
8 years ago
"prebuild": "rm -rf dist",
"build": "rollup -c",
"pretest": "npm run build",
8 years ago
"test": "nyc ava",
8 years ago
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prelint": "npm run build",
"lint": "xo",
"prepublish": "npm run build"
8 years ago
},
"xo": {
"env": "browser",
"extends": "xo-lukechilds"
8 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/merge-images.git"
},
"keywords": [
"compose",
"merge",
"images",
"without",
"no",
"canvas"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/merge-images/issues"
},
"homepage": "https://github.com/lukechilds/merge-images",
"dependencies": {},
"devDependencies": {
"ava": "^0.23.0",
8 years ago
"camelcase": "^4.0.0",
"canvas": "^1.6.2",
"coveralls": "^3.0.0",
"datauri": "^1.0.5",
"eslint-config-xo-lukechilds": "^1.0.0",
"nyc": "^11.0.2",
"pify": "^3.0.0",
"rollup": "^0.50.0",
"rollup-plugin-buble": "^0.17.0",
"xo": "^0.18.2"
8 years ago
}
}