-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "e2e-encryption",
"version": "1.1.0",
"description": "Send and receive messages in an End-to-End Encrypted Environment.",
"main": "src/index.js",
"scripts": {
"build:commonjs": "babel src --out-dir lib",
"build:umd": "cross-env FILE_NAME=e2e webpack",
"build:umd:min": "cross-env NODE_ENV=production npm run build:umd",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib dist",
"lint": "eslint src --ext .js",
"prepublishOnly": "npm test && npm run build",
"test": "jest",
"coverage": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mychewcents/e2e-encryption.git"
},
"keywords": [
"Encryption",
"Security",
"End-to-End",
"Privacy",
"tweetnacl",
"E2E",
"Decryption",
"PKI",
"Public/Private",
"Symmetric Keys",
"Asymmetric Keys"
],
"author": "Akarsh Agarwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/mychewcents/e2e-encryption/issues"
},
"homepage": "https://github.com/mychewcents/e2e-encryption#readme",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"node-notifier": "^8.0.1",
"rimraf": "^3.0.2",
"ssri": "^8.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}