This repository has been archived by the owner on Feb 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
41 lines (41 loc) · 1.52 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
{
"name": "discordcrypt",
"version": "2.0.0",
"description": "End To End File & Message Encryption For The Discord Client",
"repository": "https://gitlab.com/leogx9r/DiscordCrypt",
"main": "build/discordCrypt.plugin.js",
"scripts": {
"build": "node src/build.js -o build",
"build_signed": "node src/build.js -o build -s B8EC0775960AEB2E4C11F084DA613E753787CE3F -c",
"coverage": "npm run build && node node_modules/.bin/istanbul cover tests/perform-tests.js coverage",
"test": "npm run build && node tests/perform-tests.js",
"test_hash": "npm run build && node tests/perform-tests.js hash",
"test_scrypt": "npm run build && node tests/perform-tests.js scrypt",
"test_ciphers": "npm run build && node tests/perform-tests.js cipher",
"test_general": "npm run build && node tests/perform-tests.js general",
"test_encoding": "npm run build && node tests/perform-tests.js encoding",
"test_exchange": "npm run build && node tests/perform-tests.js exchange"
},
"author": "leogx9r",
"license": "GPLv3",
"dependencies": {
"electron": "^2.0.18",
"form-data": "^2.5.1",
"mime-types": "^2.1.25",
"module": "^1.2.5",
"original-fs": "^1.1.0",
"process": "^0.11.10",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-defaults": "^9.0.0",
"gpg": "^0.6.0",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.6.3",
"minimist": "^1.2.0",
"nodeunit": "^0.11.3",
"tui-jsdoc-template": "^1.2.2",
"uglify-es": "^3.3.10"
}
}