-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 865 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 865 Bytes
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
{
"name": "@mtblc/image-collage",
"version": "0.1.0",
"description": "Turns an array of images into a photo collage",
"main": "index.js",
"author": "Nicolás Gómez Espejo",
"homepage": "https://github.com/mtblc/image-collage",
"repository": "git://github.com/mtblc/image-collage.git",
"bugs": {
"url": "https://github.com/mtblc/image-collage/issues"
},
"license": "MIT",
"scripts": {
"test": "mocha --timeout 5000",
"lint": "eslint --ext js src"
},
"dependencies": {
"bluebird": "^3.7.1",
"canvas": "^2.6.0",
"esm": "^3.2.25",
"image-size": "^0.8.3",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}