-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1018 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
42
43
44
45
{
"name": "opennode",
"description": "Node.js library for the OpenNode API.",
"homepage": "https://developers.opennode.com/",
"bugs": "https://github.com/opennodedev/opennode-node/issues",
"repository": {
"type": "git",
"url": "https://github.com/opennodedev/opennode-node"
},
"author": {
"name": "OpenNode Inc",
"email": "support@opennode.com",
"url": "https://opennode.com"
},
"contributors": [
"João Almeida <joao@opennode.com>"
],
"license": "MIT",
"keywords": [
"bitcoin",
"lightning network",
"ln",
"microtransactions",
"payment processing",
"payment gateway",
"api",
"opennode"
],
"main": "dist/index.js",
"version": "1.5.0",
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@types/node": "^18.15.3",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"typescript": "^4.9.5"
},
"scripts": {
"test": "pnpm build && mocha",
"build": "rm -rf dist/ && tsc",
"prepack": "pnpm build"
}
}