-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 935 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
{
"name": "http-vending-machine",
"version": "0.1.0",
"description": "Charge for HTTP file downloads on a pay-per-call basis with Bitcoin and Lightning",
"main": "dist/app.js",
"bin": "dist/cli.js",
"scripts": {
"start": "babel-node src/app.js",
"dist": "babel -d dist src",
"prepublishOnly": "npm run dist"
},
"repository": "https://github.com/ch4ot1c/http-vending-machine.git",
"keywords": [
"bitcoin",
"lightning",
"lightning-charge",
"pay-per-call",
"micropayments"
],
"author": "Jon Layton",
"license": "MIT",
"dependencies": {
"express": "^4.16.2",
"paypercall": "^0.1.4",
"serve-index": "^1.9.1",
"ws": "^6.1.0"
},
"optionalDependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1"
}
}