-
Notifications
You must be signed in to change notification settings - Fork 9
/
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": "eos-encrypt",
"version": "1.0.2",
"description": "Allows to encrypt & decypt a message with an EOS key pair using AES shared key encryption mechanism.",
"main": "index.js",
"types": "index.d.ts",
"bugs": {
"url": "/~https://github.com/EOS-Nation/eos-encrypt/issues"
},
"homepage": "/~https://github.com/EOS-Nation/eos-encrypt#readme",
"directories": {
"example": "examples"
},
"files": [
"index.js",
"index.d.ts",
"types"
],
"scripts": {
"prepare": "rm -f index.d.ts && tsc -d",
"test": "tsc && ava",
"docs": "documentation readme index.js --section=API"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/EOS-Nation/eos-encrypt.git"
},
"keywords": [
"eosio",
"eos",
"encryption",
"encrypt"
],
"author": "Denis Carriere <denis@eosnation.io>",
"contributors": [
{
"name": "Denis Carriere",
"email": "denis@eosnation.io",
"url": "https://eosnation.io"
},
{
"name": "Guillaume Babin-Tremblay",
"email": "guillaume@eostitan.com",
"url": "http://eostitan.com"
}
],
"license": "MIT",
"dependencies": {
"eosjs-ecc": "4.x",
"lodash.padstart": "*"
},
"devDependencies": {
"@types/lodash.padstart": "*",
"@types/long": "*",
"@types/node": "*",
"ava": "*",
"documentation": "*",
"tslint": "*",
"typescript": "*"
}
}