-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
{
"name": "streaming-jpegoptim",
"version": "0.0.3",
"description": "Wrapper for apt package jpegoptim for image compression streaming.",
"main": "index.js",
"scripts": {
"test": "mocha ./src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{css,html,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackson-elfers/streaming-jpegoptim.git"
},
"keywords": [
"streaming",
"jpegoptim",
"wrapper",
"image",
"compression",
"package",
"apt"
],
"author": "jackson-elfers",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackson-elfers/streaming-jpegoptim/issues"
},
"homepage": "https://github.com/jackson-elfers/streaming-jpegoptim#readme",
"devDependencies": {
"eslint": "^6.5.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"dependencies": {
"file-type": "^12.3.1",
"uuid": "^3.3.3"
}
}