-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 816 Bytes
/
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
{
"name": "js-ascon",
"version": "1.0.3",
"description": "JavaScript / TypeScript Implementation of Ascon, a family of authenticated encryption (AEAD) and hashing algorithms designed to be lightweight.",
"scripts": {
"dist": "node ./node_modules/typescript/bin/tsc --project tsconfig.json && node build/dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainfoolong/js-ascon.git"
},
"author": "BrainFooLong (Roland Eigelsreiter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brainfoolong/js-ascon/issues"
},
"homepage": "https://github.com/brainfoolong/js-ascon",
"devDependencies": {
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14.21.3"
},
"dependencies": {
"js-ascon": "^1.0.0"
},
"main": "dist/ascon.js"
}