-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "datamosh",
"version": "2.1.4",
"description": "Edit images via buffers.",
"keywords": [
"datamosh",
"mosh",
"jpg",
"png",
"tiff",
"bmp",
"gif",
"edit",
"image",
"buffer",
"glitch"
],
"engines": {
"node": ">=14.0.0"
},
"author": "Michael Sterpka <[email protected]>",
"contributors": [
"Tyler Laskey <[email protected]> (https://github.com/tlaskey)",
"BonjourInternet (https://github.com/BjrInt)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mster/datamosh.git"
},
"bugs": {
"url": "https://github.com/mster/datamosh/issues"
},
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run jest",
"jest": "jest ./tests",
"lint": "echo \"Linting with Prettier\n\" && npx prettier --check . && echo \"Lint passed\n\"",
"lint-fix": "echo \"Auto-fixing with Prettier...\" && npx prettier --write ."
},
"jest": {
"testRegex": "tests/.*.test.js$"
},
"dependencies": {
"file-type": "^16.5.0",
"image-decode": "^1.2.2",
"image-encode": "^1.3.1"
},
"devDependencies": {
"jest": "^27.0.4",
"prettier": "^2.3.0"
}
}