-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1008 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
{
"name": "lnpay",
"version": "1.1.4",
"description": "NPM Package for LNPay.co API.",
"main": "lib/index.js",
"author": "MiguelMedeiros\\Miguel Medeiros <miguel@miguelmedeiros.com.br>",
"email": "miguel@miguelmedeiros.com.br",
"url": "http://miguelmedeiros.com.br",
"private": false,
"license": "MIT",
"repository": "github:MiguelMedeiros/lnpay",
"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",
"lnpay",
"typescript",
"axios"
],
"dependencies": {
"axios": "^0.21.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@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"
}
}