-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
80 lines (80 loc) · 2.64 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
73
74
75
76
77
78
79
80
{
"name": "boltwall",
"version": "6.0.4",
"description": "A Nodejs + Express middleware for adding a lightning-based paywall to API routes w/ macaroons for flexible delegation.",
"main": "dist/index.js",
"repository": "[email protected]:Tierion/boltwall.git",
"author": "Buck Perley <[email protected]>",
"license": "AGPL-3.0",
"types": "./dist/index.d.ts",
"bin": {
"boltwall": "./bin/boltwall"
},
"scripts": {
"start": "nodemon",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build:bin": " ncc build src/server.ts -o bin/boltwall -m",
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf dist && mkdir dist && rm -rf bin && mkdir bin",
"lint": "tsc --noEmit --project tsconfig.json && eslint --ext .ts src --quiet",
"test": "LOG_LEVEL=none nyc ts-mocha -p tsconfig.json tests/**/*.spec.ts",
"test:watch": "LOG_LEVEL=none ts-mocha -p tsconfig.json --reporter spec --watch --watch-extensions ts tests/**/*.spec.ts",
"prepare": "npm run clean",
"docs": "./docs.sh",
"prepublishOnly": "npm run docs && npm run build && npm run build:bin",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@zeit/ncc": "^0.21.0",
"binet": "^0.3.5",
"blgr": "^0.1.7",
"compose-middleware": "5.0.1",
"dotenv": "8.0.0",
"express": "4.17.1",
"ln-service": "https://github.com/bucko13/ln-service#path",
"lsat-js": "^2.0.3",
"macaroon": "git+https://github.com/tierion/js-macaroon.git#ts",
"opennode": "1.2.1",
"request-promise": "^4.2.5",
"request-promise-native": "^1.0.8",
"secp256k1": "^4.0.0",
"zbase32": "^1.0.2"
},
"devDependencies": {
"@now/node": "0.12.1",
"@types/chai": "^4.2.5",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@types/request-promise-native": "^1.0.17",
"@types/sinon": "^7.5.1",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"body-parser": "1.19.0",
"chai": "^4.2.0",
"cors": "2.8.5",
"coveralls": "^3.0.9",
"eslint": "6.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-prettier": "3.1.0",
"is-base64": "1.0.0",
"mocha": "^6.2.2",
"nodemon": "1.19.1",
"nyc": "^15.0.0",
"prettier": "1.18.2",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"ts-mocha": "^6.0.0",
"tslint": "^5.20.1",
"typedoc": "^0.15.3",
"typescript": "^3.7.2",
"yarn-audit-fix": "^4.3.3"
},
"peerDependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5"
}
}