-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1020 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@anonvote/crypto",
"version": "1.4.0",
"description": "Cryptographic primitives and token utilities for the AnonVote ecosystem",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "jest --runInBand",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"anonvote",
"crypto",
"voting",
"anonymous",
"stellar",
"privacy",
"token",
"aes-256-gcm",
"sha256"
],
"author": "AnonVote",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnonVote/js.git"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.11.30",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "5.4.3"
}
}