-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.13 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
81
{
"name": "@webqit/webflo",
"title": "Webflo",
"description": "The universal, fullstack JavaScript framework.",
"keywords": [
"git-workflow",
"self-hosting",
"automatic-deployment",
"command-line-interface",
"progressive-web-apps",
"single-page-apps",
"vanila-javascript"
],
"homepage": "https://webqit.io/tooling/webflo",
"version": "0.11.61-0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/webqit/webflo.git"
},
"bugs": {
"url": "https://github.com/webqit/webflo/issues"
},
"type": "module",
"main": "./src/index.js",
"scripts": {
"test": "mocha --extension .test.js --exit",
"test:coverage": "c8 --reporter=text-lcov npm run test | coveralls",
"postversion": "npm publish",
"postpublish": "git push && git push --tags"
},
"bin": {
"webflo": "src/webflo.js",
"webflo-certbot-http-auth-hook": "src/services-pi/cert/http-auth-hook.js",
"webflo-certbot-http-cleanup-hook": "src/services-pi/cert/http-cleanup-hook.js"
},
"dependencies": {
"@octokit/webhooks": "^7.15.1",
"@webqit/backpack": "^0.1.6",
"@webqit/oohtml-ssr": "^1.1.5",
"@webqit/util": "^0.8.9",
"client-sessions": "^0.8.0",
"esbuild": "^0.14.38",
"form-data-encoder": "^1.6.0",
"formdata-node": "^4.3.0",
"formidable": "^2.0.1",
"mime-types": "^2.1.33",
"simple-git": "^2.20.1",
"stream-slice": "^0.1.2",
"urlpattern-polyfill": "^4.0.3"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0"
},
"author": "Oxford Harrison <oxharris.dev@gmail.com>",
"maintainers": [
"Oxford Harrison <oxharris.dev@gmail.com>"
],
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/ox_harris"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"patreon"
],
"config": {
"patreonUsername": "ox_harris",
"githubUsername": "webqit",
"githubRepository": "webflo",
"githubSlug": "webqit/webflo",
"npmPackageName": "@webqit/webflo"
}
}
}