-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.7 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
{
"name": "focalpoint-multi-cropper",
"version": "1.0.0",
"description": "Helper tool to rename images for batch cropping by ImageMagick.",
"main": "main.cjs",
"scripts": {
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint ./css/*.css",
"lint:js": "npx eslint ./*.*js && npx eslint ./classes/*.*js",
"prepare": "husky install",
"serve": "http-server ./ --port 8000 --silent",
"start": "electron .",
"start:debug": "electron . -- devtools",
"test": "start-server-and-test serve http://127.0.0.1:8000 test:cypress",
"test:cypress": "cypress run --browser firefox:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/focalpoint-multi-cropper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/focalpoint-multi-cropper/issues"
},
"homepage": "https://github.com/dotherightthing/focalpoint-multi-cropper#readme",
"dependencies": {
"command-exists": "^1.2.9",
"cropperjs": "^1.5.13",
"dtrt-string-utils": "github:dotherightthing/dtrt-string-utils",
"dtrt-type-validate": "github:dotherightthing/dtrt-type-validate",
"electron": "^25.2.0",
"electron-context-menu": "^3.6.1",
"exifreader": "^4.12.0",
"filesize": "^10.1.0",
"gm": "^1.25.0",
"stylelint": "^15.6.0",
"stylelint-order": "^6.0.3"
},
"devDependencies": {
"cypress": "^12.14.0",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.1.1",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"start-server-and-test": "^2.0.0"
}
}