-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 823 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 823 Bytes
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
{
"name": "@hyperingenuity/skyfall",
"version": "0.5.0",
"description": "Event based webhook handler",
"main": "lib/skyfall.js",
"bin": {
"skyfall": "./bin/cli.js"
},
"repository": "git@github.com:mdbarr/skyfall.git",
"author": "Mark Barr <mark@hyperingenuity.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@hyperingenuity/uscript": "^0.4.0",
"barrkeep": "^2.6.6",
"cron": "^1.8.2",
"fastify": "^3.3.0",
"fastify-static": "^3.2.0",
"mqtt": "^4.2.1",
"redis": "^3.0.2",
"request": "^2.88.2",
"uuid": "^8.3.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^7.8.1"
},
"scripts": {
"build": "docker build -t skyfall .",
"lint": "eslint bin/*.js lib/*.js plugins/*.js examples/*.js",
"start": "./bin/cli.js"
}
}