-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 820 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 820 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
29
30
31
32
33
34
{
"name": "secure-e2ee",
"version": "0.4.0",
"description": "Secure end-to-end-encryption",
"main": "dist/encryptor.js",
"browser": "dist/browser-encryptor.js",
"author": "Simon Knott",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test:node": "nyc mocha -r ts-node/register src/encryptor.spec.ts",
"test:browser": "parcel mocha.html -d test-dist --open",
"prepack": "yarn build"
},
"devDependencies": {
"@types/chai": "4.2.21",
"@types/md5": "^2.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^16.7.12",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"parcel-bundler": "^1.12.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"base64-js": "^1.5.1",
"md5": "^2.3.0"
}
}