-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "lnbits",
"version": "1.1.7",
"description": "NPM Package for LNBits.com API.",
"main": "lib/index.js",
"author": "MiguelMedeiros\\Miguel Medeiros <[email protected]>",
"email": "[email protected]",
"url": "http://miguelmedeiros.com.br",
"private": false,
"license": "MIT",
"repository": "github:MiguelMedeiros/lnbits-js",
"types": "lib/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"prepare": "npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"keywords": [
"bitcoin",
"lightning-network",
"lnbits",
"typescript",
"axios"
],
"dependencies": {
"axios": "^0.21.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"nodemon": "^2.0.7"
}
}