-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "lnbits-ts",
"version": "0.0.1",
"description": "NPM Package for LNBits.com API.",
"main": "dist/index.js",
"private": false,
"repository": "github:BilligsterUser/lnbits-ts",
"types": "dist/index.d.ts",
"author": "@billigsteruser",
"license": "MIT OR Apache-2.0",
"type": "module",
"files": ["dist/**/*"],
"scripts": {
"2": "ts-node src/index.ts",
"lint": "npm run l & npm run ll",
"start": "node dist/index.js",
"build": "npx tsc",
"test": "npx jest --coverage --verbose --passWithNoTests",
"dcheck": "npx depcheck",
"debug": "node --inspect=5858 -r ts-node/register src/index.ts",
"l": "npx eslint . --ext .ts,.js,.dt.s,.html --fix || true",
"ll": "npx tslint -p . -t verbose --fix",
"check-updates": "npx npm-check",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"bitcoin",
"lightning-network",
"lnbits",
"typescript",
"axios"
],
"dependencies": {
"axios": "^1.3.5"
},
"devDependencies": {
"@getify/eslint-plugin-proper-arrows": "^11.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
}
}