-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "dfinity-tx",
"version": "0.0.1",
"description": "This libary provides basic functions for creating and validating txs",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node ./tests/index.js",
"build:docs": "documentation build --github -f md ./index.js > ./docs/index.md"
},
"keywords": [
"dfinity",
"tx"
],
"author": "mjbecze <mjbecze@gmail.com>",
"license": "GPL-3.0",
"dependencies": {
"borc": "^2.0.3",
"events": "^2.0.0",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.3.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"documentation": "^6.0.0",
"nyc": "^11.3.0",
"standard": "^11.0.0",
"tape": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/dfinity/js-dfinity-tx.git"
},
"bugs": {
"url": "https://github.com/dfinity/js-dfinity-tx/issues"
},
"homepage": "https://github.com/dfinity/js-dfinity-tx"
}