forked from Safeheron/crypto-zkp-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "@thepulsewallet/crypto-zkp",
"version": "1.0.1",
"description": "Zero knowledge proof",
"keywords": [
"schnorr proof/ dlog proof",
"heg proof"
],
"homepage": "https://github.com/safeheron/crypto-zkp-js",
"bugs": {
"url": "https://github.com/safeheron/crypto-zkp-js/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:thepulsewallet/crypto-zkp-js.git"
},
"author": "Max<[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": {
"buffer": false
},
"scripts": {
"lint": "standardx",
"prepublish": "npm run build",
"build": "tsc -p tsconfig.json",
"test": "mocha"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/crypto-js": "^4.1.1",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.1",
"assert": "^2.0.0",
"babel-eslint": "^10.0.3",
"mocha": "^9.2.2",
"standardx": "^5.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@thepulsewallet/crypto-paillier": "^1.0.1",
"@thepulsewallet/crypto-rand": "^1.0.0",
"@safeheron/crypto-utils": "^1.0.1",
"bn.js": "^5.2.1",
"crypto-js": "3.3.0",
"elliptic": "^6.5.3"
},
"standardx": {
"parser": "babel-eslint",
"env": [
"mocha"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}