-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
56 lines (56 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
51
52
53
54
55
56
{
"name": "merge-images",
"version": "2.0.0",
"description": "Easily compose images together without messing around with canvas",
"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",
"lint": "xo",
"prepublish": "npm run build"
},
"xo": {
"env": "browser",
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/merge-images.git"
},
"keywords": [
"compose",
"merge",
"images",
"without",
"no",
"canvas"
],
"author": "Luke Childs <[email protected]> (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.25.0",
"camelcase": "^5.0.0",
"canvas": "^2.6.1",
"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.59.0",
"rollup-plugin-buble": "^0.19.2",
"xo": "^0.18.2"
}
}