-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "impro",
"version": "0.14.2",
"description": "Image processing engine",
"author": "Andreas Lind <[email protected]>",
"main": "index.js",
"files": [
"index.js",
"src"
],
"repository": "papandreou/impro",
"license": "BSD-3-Clause",
"keywords": [
"image",
"processing",
"resize",
"rotate"
],
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text -- npm test && echo Coverage Report written to coverage/lcov-report/index.html",
"docs": "evaldown docs/README.md > README.md",
"test": "mocha",
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"clean": "rm -rf lib coverage .nyc_output",
"version": "npm run docs && git add README.md && offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"devDependencies": {
"animated-gif-detector": "1.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"evaldown": "^2.0.0",
"file-type": "^12.3.0",
"gifsicle": "^5.3.0",
"gm-papandreou": "1.23.0-patch1",
"impro": "file:./",
"inkscape": "3.0.0",
"jpegtran": "2.0.0",
"memoizesync": "^1.1.1",
"mocha": "^8.2.1",
"nyc": "^14.1.1",
"offline-github-changelog": "^1.7.0",
"optipng": "^4.0.0",
"pngcrush": "^3.0.0",
"pngquant": "^4.0.0",
"prettier": "~2.2.1",
"sharp": "~0.32.0",
"sinon": "^9.2.4",
"svgfilter": "4.1.0",
"unexpected": "^12.0.1",
"unexpected-dom": "^5.0.0",
"unexpected-sinon": "^11.0.1"
},
"dependencies": {
"exif-reader": "^1.0.3",
"icc": "^3.0.0",
"mime": "^3.0.0"
}
}