-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
{
"name": "nodejs-image-squeezer",
"version": "1.2.16",
"description": "A simple npm package for image compression powered by FFMPEG.",
"main": "dist/ImageSqueezer.js",
"types": "dist/ImageSqueezer.d.ts",
"scripts": {
"test": "jest",
"build:production": "standard-version",
"build:tsc": "./node_modules/.bin/tsc"
},
"keywords": [
"image",
"compression",
"lossy",
"ffmpeg"
],
"author": "Joshua Clifford Reyes <[email protected]> (https://lorddashme.github.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lorddashme/nodejs-image-squeezer.git"
},
"homepage": "https://github.com/lorddashme/nodejs-image-squeezer#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@types/image-size": "^0.7.0",
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"standard-version": "^8.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/image-size": "^0.7.0",
"@types/node": "^12.0.2",
"file-type": "^16.5.4",
"image-size": "^0.7.4",
"read-chunk": "^3.2.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"**/src/*.{ts,tsx}": [
"eslint"
]
},
"ignore": [
"**/dist/*.min.js"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@lorddashme"
}
}