-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "AESEncrypter",
"version": "0.1.0",
"description": "A tool to encrypt and decrypt data using the AES cypher",
"main": "main.js",
"build": {
"appId": "com.craigmacgregor.aes-encrypter",
"mac": {
"category": "security"
}
},
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"test": "mocha && standard",
"package": "npm-run-all package:*",
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --out=out",
"package:win": "electron-packager . --overwrite --platform=win32 --arch=ia32 --out=out",
"package:linux": "electron-packager . --overwrite --platform=linux --arch=x64 --out=out"
},
"repository": "https://github.com/craigmacgregor/aes-encrypter",
"keywords": [
"Encryption",
"AES",
"Cryptocurrency",
"Bitcoin"
],
"author": "craigmacgregor",
"license": "CC0-1.0",
"devDependencies": {
"browserify": "^14.3.0",
"electron": "^1.8.4",
"electron-packager": "^8.6.0",
"electron-winstaller": "^2.2.0"
},
"dependencies": {
"clipboard": "^1.7.1",
"crypto-js": "^3.1.9-1",
"jquery": "^3.3.1",
"material-design-icons": "^3.0.1",
"materialize-css": "^0.100.2",
"qrcode-generator": "^1.2.0"
}
}