forked from BishopFox/unredacter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 685 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 685 Bytes
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
{
"name": "unredacter",
"version": "1.0.0",
"description": "Unredact text that has been redacted using insecure methods",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run build && electron ./dist/main.js"
},
"repository": "https://github.com/electron/electron-quick-start-typescript",
"keywords": [
"redacted"
],
"author": "Dan Petro",
"license": "GPLv3",
"devDependencies": {
"electron": "^9.4.4",
"eslint": "^7.3.1",
"rxjs": "^6.5.4",
"typescript": "^3.9.5"
},
"dependencies": {
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"sharp": "^0.29.1"
}
}