-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
43 lines (40 loc) · 1.21 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
{
"name": "sieve",
"version": "0.6.1",
"description": "Configures server-side sieve email filters",
"main": "main_esm.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"devDependencies": {
"electron": "^33.2.1",
"@electron/packager": "^18.3.6",
"bootstrap": "^5.3.3",
"codemirror": "^5.65.4",
"@eslint/js": "^9.17.0",
"eslint-plugin-jsdoc": "^50.6.1",
"globals": "^15.14.0",
"gulp": "^5.0.0",
"yazl": "^3.3.1"
},
"scripts": {
"start-win32": "gulp \"app:package-win32\" && cd ./build/electron/out/sieve-win32-x64/ && sieve.exe",
"start": "cd node_modules/.bin && electron ./../../build/electron/resources",
"debug": "cd node_modules/.bin && electron ./../../build/electron/resources --debug",
"test": "gulp \"test:package\" && node ./tests/index.js ./build/test/app",
"server": "node ./tools/Server/Server.js",
"gulp": "gulp",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thsmi/sieve.git"
},
"author": "Thomas Schmid <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/thsmi/sieve/issues"
},
"homepage": "https://github.com/thsmi/sieve#readme"
}