-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.69 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": "@klieber/media-sync",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/klieber/media-sync.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"/bin/media-sync.js",
"/lib",
"!*.test.js"
],
"bin": {
"media-sync": "./bin/media-sync.js"
},
"scripts": {
"lint:eslint": "eslint --cache --fix .",
"lint:prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\" --write --loglevel warn",
"lint": "npm-run-all lint:*",
"test": "jest --collect-coverage",
"pretest": "npm run lint",
"watch": "jest --watch",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"author": "Kyle Lieber",
"license": "MIT",
"dependencies": {
"cron": "2.4.4",
"date-fns": "2.30.0",
"dist-exiftool": "10.53.0",
"dropbox": "10.34.0",
"ffprobe": "1.1.2",
"ffprobe-static": "3.1.0",
"node-exiftool": "2.3.0",
"node-fetch": "3.3.2",
"rc": "1.2.8",
"sharp": "0.32.6",
"tmp": "0.2.1",
"winston": "3.11.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.23.2",
"@commitlint/cli": "17.8.1",
"@commitlint/config-angular": "17.8.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-when": "3.6.0",
"lint-staged": "13.3.0",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"prettier": "2.8.8",
"semantic-release": "21.1.2"
}
}