-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
65
66
67
68
69
{
"name": "@privacyresearch/ed25519-ts",
"version": "0.0.3",
"description": "TypeScript implementation of ed25519 & ristretto255 allowing BigInt and SHA dependency injection",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"scripts": {
"test": "jest --config jestconfig.json --no-cache",
"lint": "eslint -c .eslintrc.js '**/*.ts'",
"format": "prettier '**/{*.{js?(on),ts?(x),md},.*.js?(on)}' --write --list-different --config prettier.config.js",
"prepare": "yarn run build",
"build": "tsc -d",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint && yarn test",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags",
"bench": "node src/__test__/benchmark-jsbi.js && node src/__test__/benchmark-native.js"
},
"author": "Rolfe Schmidt (https://privacyresearch.io) adapted from Paul Miller (https://paulmillr.com)",
"homepage": "https://github.com/privacyresearch/pr-ed25519.git",
"repository": {
"type": "git",
"url": "https://github.com/privacyresearch/pr-ed25519.git"
},
"license": "MIT",
"browser": {
"crypto": false
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"fast-check": "^2.14.0",
"jest": "^26.6.3",
"js-sha512": "^0.8.0",
"jsbi": "^3.2.1",
"micro-bmark": "^0.1.3",
"prettier": "^2.2.1",
"rollup": "^2.50.4",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"keywords": [
"ed25519",
"edwards",
"ristretto255",
"decaf",
"curve25519",
"x25519",
"elliptic",
"elliptic curve",
"curve",
"signature",
"ecc",
"eddsa",
"ecdsa",
"cryptography",
"security"
],
"dependencies": {}
}