-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "lndconnect",
"version": "0.2.10",
"description": "Generate and parse lndconnect uris",
"main": "./index.js",
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"scripts": {
"test": "babel-tape-runner test/*.js | tap-spec",
"lint": "prettier-eslint --write \"./**/*.{js,json,md}\"",
"build": "npm run clean && cross-env NODE_ENV=production babel src --out-dir dist",
"clean": "rimraf -r ./dist",
"preversion": "npm test",
"prepack": "npm run build && cp dist/*.js .",
"postpack": "rm *.js"
},
"files": [
".babelrc",
"*.js"
],
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LN-Zap/node-lndconnect.git"
},
"dependencies": {
"base64url": "^3.0.1",
"decode-uri-component": "^0.2.0",
"strict-uri-encode": "^2.0.0",
"untildify": "^4.0.0"
},
"keywords": [
"bitcoin",
"lightning-network",
"lnd"
],
"author": "Tom Kirkpatrick <[email protected]> (http://www.kirkdesigns.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LN-Zap/node-lndconnect/issues"
},
"homepage": "https://github.com/LN-Zap/node-lndconnect",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-source-map-support": "2.1.1",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"babel-tape-runner": "3.0.0",
"cross-env": "6.0.3",
"eslint": "6.6.0",
"eslint-config-prettier": "6.7.0",
"prettier": "1.18.2",
"prettier-eslint": "9.0.1",
"prettier-eslint-cli": "5.0.0",
"rimraf": "3.0.0",
"source-map-support": "0.5.16",
"tap-spec": "5.0.0",
"tape": "4.11.0",
"tape-promise": "4.0.0"
},
"buildDependencies": [
"babel-cli",
"babel-plugin-add-module-exports",
"babel-preset-env"
]
}