forked from thsmi/sieve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.29 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
{
"name": "sieve",
"version": "0.6.1",
"description": "Configures server-side sieve email filters",
"main": "main_esm.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"devDependencies": {
"bootstrap": "^5.2.3",
"codemirror": "^5.65.4",
"electron": "^22.0.0",
"electron-packager": "^17.1.1",
"eslint": "^8.29.0",
"eslint-plugin-jsdoc": "^39.3.20",
"gulp": "^4.0.0",
"yazl": "^2.5.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 --config .eslintrc.json ./src/**/*.js ./src/**/*.mjs ./tests/**/*.js ./tests/**/*.mjs gulpfile.mjs ./gulp/**.mjs"
},
"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"
}