This repository was archived by the owner on Feb 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
{
"name": "miscreant",
"version": "0.3.2",
"description": "Misuse resistant symmetric encryption library providing AES-SIV (RFC 5297), AES-PMAC-SIV, and STREAM constructions",
"homepage": "https://miscreant.io",
"main": "release/index.js",
"types": "src/index.ts",
"author": "Tony Arcieri",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miscreant/miscreant.js.git"
},
"keywords": [
"cryptography",
"encryption",
"streaming",
"security"
],
"bugs": {
"url": "https://github.com/miscreant/miscreant.js/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require ts-node/register test/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.0",
"async-file": "^2.0.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.0",
"mocha": "^7.0.0",
"mocha-typescript": "^1.1.0",
"source-map-loader": "^0.2.3",
"tjson-js": "^0.1.2",
"ts-node": "^8.3.0",
"typescript": "^3.6.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webcrypto-core": "1.0.17",
"webpack": "^4.39.3",
"webpack-stream": "^5.2.1"
}
}