-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.78 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
{
"name": "sharpmachine",
"version": "1.2.6",
"description": "Interactive CLI for batch image sharp optimizing and resizing images",
"main": "index.js",
"types": "./typings/index.d.ts",
"scripts": {
"start": "node index.js",
"build": "tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\"",
"lint": "eslint . --ext .ts --fix"
},
"author": "Lukasz Celitan, Spaceghost, info@spaceout.pl",
"license": "ISC",
"repository": "https://github.com/MassivDash/SharpMachine.git",
"deprecated": false,
"keywords": [
"cli",
"sharp",
"image rename",
"image optimization",
"sharp cli",
"resize images",
"node image resizer"
],
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"probe-image-size": "^7.2.1",
"sharp": "^0.29.1",
"uuid": "^8.3.1"
},
"bin": {
"sharpmachine": "./index.js"
},
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/clui": "^0.3.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.157",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.0.14",
"@types/sharp": "^0.29.2",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx,css}": [
"./node_modules/.bin/eslint --fix --ext .ts,.tsx"
]
}
}