This repository was archived by the owner on Mar 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
41
42
43
44
45
46
47
48
49
{
"name": "lightnode-invoice",
"version": "0.3.0",
"description": "Lightning Network invoice protocol library",
"main": "src/index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --recursive \"src/**/*.spec.js\"",
"format": "prettier --write src/*.js",
"lint": "eslint src/*.js",
"validate": "npm run format; npm run lint; npm test",
"ci": "npm run lint; npm run test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altangent/lightnode-invoice.git"
},
"keywords": [
"bolt-11",
"bitcoin",
"lightning-invoice",
"lightning-payment",
"lightning-network",
"payment-encoding",
"lightnode",
"lightnode-invoice"
],
"author": "Brian Mancini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altangent/lightnode-invoice/issues"
},
"homepage": "https://github.com/altangent/lightnode-invoice#readme",
"dependencies": {
"bech32": "^1.1.3",
"bs58check": "^2.1.2",
"decimal.js": "^10.0.1",
"secp256k1": "^3.5.0",
"simple-buffer-cursor": "^1.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.13.4",
"sinon": "^7.2.2"
}
}