-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "image2pattern",
"version": "0.0.1-alpha",
"description": "A simple app to convert an image to a cross stitch pattern.",
"main": "main.js",
"scripts": {
"start": "electron .",
"lint": "eslint --ignore-path .gitignore src",
"image-test": "node tests/image.js",
"gen-test": "node tests/generate.js",
"simple-debug": "node tests/index.js",
"debug": "electron --inspect=5858 .",
"rebuild-colors": "node scripts/transformColors.js",
"pack": "electron-builder --dir",
"dist": "electron-builder -wlm",
"postinstall": "electron-builder install-app-deps",
"test": "mocha"
},
"build": {
"appId": "com.electron.image2pattern",
"productName": "image2pattern",
"mac": {
"category": "public.app-category.utilities",
"target": "zip"
},
"win": {
"target": "zip"
},
"linux": {
"target": "zip"
}
},
"keywords": [
"images",
"cross-stitch",
"Electron"
],
"author": "Aaron Crosman",
"license": "MIT",
"repository": "https://github.com/acrosman/image2pattern",
"dependencies": {
"bootstrap": "^4.5.2",
"bootstrap-colorpicker": "^3.2.0",
"chance": "^1.1.7",
"jimp": "^0.14.0",
"jquery": "^3.5.0",
"node-vibrant": "^3.1.5",
"pdfkit": "^0.8.3",
"popper.js": "^1.16.1",
"svg-to-pdfkit": "^0.1.8",
"svgdom": "0.0.15",
"svgjs": "^2.6.2"
},
"devDependencies": {
"chai": "^4.2.0",
"debug-menu": "^0.6.1",
"devtron": "^1.4.0",
"electron": "^22.3.25",
"electron-builder": "^23.6.0",
"electron-debug": "^2.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"mocha": "^8.1.3"
}
}