This repository was archived by the owner on Apr 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
{
"name": "gulp-jimp-wrapper",
"version": "1.1.0",
"description": "Manipulates images using Jimp.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"directories": {
"test": "__tests__"
},
"scripts": {
"lint": "ts-standardx",
"lint:fix": "ts-standardx --fix",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"test": "npx nyc@latest --include=src --reporter=lcov --reporter=text-summary mocha __tests__",
"pretest": "npm run build && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exuanbo/gulp-jimp-wrapper.git"
},
"keywords": [
"gulpplugin",
"gulp",
"gulp-jimp",
"jimp",
"gulp-image",
"image"
],
"author": {
"name": "exuanbo",
"email": "exuanbo@protonmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/exuanbo/gulp-jimp-wrapper/issues"
},
"homepage": "https://github.com/exuanbo/gulp-jimp-wrapper#readme",
"dependencies": {
"jimp": "0.16.1",
"plugin-error": "1.0.1",
"through2": "4.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "16.0.0",
"chai": "4.2.0",
"gulp": "4.0.2",
"mocha": "8.2.1",
"rimraf": "3.0.2",
"rollup": "2.37.1",
"ts-standardx": "0.5.2-0",
"vinyl": "2.2.1"
}
}