This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
57
58
59
60
{
"name": "imgsuki",
"version": "0.1.3",
"description": "A command line tool for manipulate images with Node.JS",
"main": "index.js",
"bin": {
"suki": "bin/suki.js"
},
"scripts": {
"start": "node lib/index.js",
"build": "pkg lib/index.js --targets node8.9.0-linux,node8.9.0-macos,node8.9.0-win --out-dir=snapshot",
"example": "node ./lib resize C:\\Users\\Usuario\\repositories\\imgsuki\\test\\sample-images\\capella.jpg -o capella.out.jpg -w 150 -h 100",
"test": "node_modules/.bin/mocha test"
},
"pkg": {
"entrypoint": "bin/suki.js",
"scripts": "lib/**/*.js",
"targets": [
"node6",
"node6-win-x64",
"node6-win-x86",
"node6-linux-x64",
"node6-linux-x86",
"node6-macos-x64",
"node6-macos-x86"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SiroDiaz/imgsuki.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SiroDiaz/imgsuki/issues"
},
"homepage": "https://github.com/SiroDiaz/imgsuki#readme",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"commander": "^2.13.0",
"exif": "^0.6.0",
"file-type": "^7.5.0",
"filesize": "^3.6.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"image-size": "^0.6.2",
"pad": "^2.0.3",
"read-chunk": "^2.1.0",
"sharp": "^0.19.0",
"upath": "^1.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"copyfiles": "^1.2.0",
"mocha": "^5.0.0",
"pkg": "^4.3.0"
}
}