-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1013 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@cryptid/cryptid-js",
"version": "1.0.1",
"description": "Browser-friendly Identity-based Encryption library powered by WebAssembly.",
"license": "Apache-2.0",
"main": "lib/node/js/index.js",
"browser": "lib/browser/index.js",
"keywords": [
"crypto",
"cryptography",
"identity-based encryption",
"ibe"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cryptid-org/cryptid-js.git"
},
"author": "Attila Bagossy",
"bugs": {
"url": "https://github.com/cryptid-org/cryptid-js/issues"
},
"homepage": "https://github.com/cryptid-org/cryptid-js#readme",
"dependencies": {
"base64-js": "1.3.1"
},
"devDependencies": {
"faker": "4.1.0",
"mocha": "6.2.0",
"mocha-junit-reporter": "1.23.1",
"nyc": "14.1.1",
"rollup": "1.21.2",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.2"
},
"files": [
"LICENSE",
"README.md",
"lib"
]
}