-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "merge-img",
"version": "2.1.2",
"description": "Merge multiple images into a single image",
"author": "Plusb Preco <[email protected]>",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run test && npm run build",
"prebuild": "npm run clean",
"test": "eslint . && jest",
"build": "babel --out-dir lib src",
"clean": "rimraf lib"
},
"engines": {
"node": ">= 4"
},
"license": "MIT",
"homepage": "https://github.com/preco21/merge-img#readme",
"repository": "preco21/merge-img",
"bugs": {
"url": "https://github.com/preco21/merge-img/issues"
},
"files": [
"lib"
],
"keywords": [
"concat",
"convert",
"compose",
"image",
"manipulation",
"merge"
],
"dependencies": {
"is-plain-obj": "^1.1.0",
"jimp": "^0.16.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-prev": "^6.0.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1"
}
}