forked from flipenjor/lipo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
165 lines (165 loc) · 3.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "lipo",
"description": "Free image manipulation API service built on top of Sharp (an alternative to Jimp, Graphics Magic, Image Magick, and PhantomJS)",
"version": "2.0.0",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"ava": {
"failFast": true,
"verbose": true,
"serial": true
},
"bugs": {
"url": "https://github.com/lipojs/lipo/issues",
"email": "niftylettuce@gmail.com"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"Imed Jaberi <imed_jebari@hotmail.fr> (https://3imed-jaberi.com/)"
],
"dependencies": {
"boolean": "^3.0.1",
"fast-safe-stringify": "^2.0.7",
"form-data": "3.0.0",
"frisbee": "^3.1.4",
"lodash.isbuffer": "^4.3.4",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"universalify": "^0.1.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@koa/multer": "2.x",
"ava": "^3.10.1",
"bytes": "^3.1.0",
"codecov": "^3.7.0",
"cross-env": "^7.0.2",
"errorhandler": "^1.5.1",
"eslint": "^7.4.0",
"eslint-config-xo-lass": "^1.0.3",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"koa": "^2.13.0",
"koa-better-error-handler": "^5.0.0",
"koa-bodyparser": "^4.3.0",
"lint-staged": "^10.2.11",
"lipo-express": "^0.0.5",
"lipo-koa": "^0.1.5",
"multer": "^2.0.0-beta.1",
"nyc": "^15.1.0",
"remark-cli": "^8.0.0",
"remark-preset-github": "^2.0.2",
"rimraf": "^3.0.2",
"uuid": "^8.2.0",
"xo": "^0.32.1"
},
"engines": {
"node": ">= 8.9.4"
},
"files": [
"lib"
],
"homepage": "https://github.com/lipojs/lipo",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"auto",
"chrome",
"chromium",
"crop",
"enhance",
"gif",
"gm",
"graphics",
"image",
"image",
"img",
"jimp",
"jpeg",
"jpg",
"lipo",
"magick",
"manipulate",
"manipulation",
"phantom",
"phantomjs",
"png",
"puppeteer",
"resize",
"scale",
"sharp",
"sharpen",
"svg",
"tiff",
"trim",
"webp"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
},
"main": "lib/index.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/lipojs/lipo"
},
"scripts": {
"build": "babel src --out-dir lib",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "npm run lint:c && npm run lint:md",
"lint:c": "xo",
"lint:md": "remark . -qfo",
"postbuild": "npm run lint",
"prebuild": "rimraf lib",
"precommit": "lint-staged && npm test",
"pretest": "npm run build",
"test": "cross-env NODE_ENV=test LIPO=true ava",
"test-coverage": "cross-env NODE_ENV=test LIPO=true nyc test",
"watch": "babel src --watch --out-dir lib"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"ignore": [
"config.js"
]
}
}