forked from lukechilds/merge-images
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "merge-images-v2",
"version": "2.0.1",
"description": "Easily compose images together without messing around with canvas, but has canvas for node",
"main": "dist/index.umd.js",
"module": "dist/index.es2015.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c",
"pretest": "npm run build",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prelint": "npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcgodard/merge-images-v2.git"
},
"keywords": [
"compose",
"merge",
"rezise",
"images",
"without",
"canvas"
],
"author": "Originally: Luke Childs <[email protected]> (http://lukechilds.co.uk), Currently: Marc Godard <[email protected]> (https://marcgodard.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcgodard/merge-images-v2/issues"
},
"homepage": "https://github.com/marcgodard/merge-images-v2",
"dependencies": {},
"devDependencies": {
"ava": "^1.4.1",
"browser-env": "^3.2.6",
"camelcase": "^5.0.0",
"canvas": "^2.5.0",
"coveralls": "^3.0.0",
"datauri": "^2.0.0",
"nyc": "^14.1.1",
"pify": "^4.0.1",
"rollup": "^1.12.3",
"rollup-plugin-buble": "^0.19.2"
}
}