-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
122 lines (122 loc) · 3.83 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "hook.io",
"version": "1.0.0",
"description": "microservice and webhook hosting platform",
"main": "index.js",
"directories": {
"example": "examples"
},
"bin": {},
"dependencies": {
"async": "^1.3.0",
"big": "^0.5.0",
"body-parser": "^1.9.2",
"busboy": "^0.2.9",
"cheerio": "^0.17.0",
"chroot": "^1.0.10",
"coffee-script": "^1.10.0",
"colors": "^1.3.3",
"cron-parser": "^2.11.0",
"datauri": "^0.5.5",
"date-fns-timezone": "^0.1.4",
"dateformat": "^1.0.12",
"debug": "^2.1.0",
"github": "^0.2.2",
"hook.io-datastore": "https://github.com/bigcompany/hook.io-datastore/tarball/master",
"hook.io-i18n": "https://github.com/bigcompany/hook.io-i18n/tarball/master",
"hook.io-logs": "https://github.com/bigcompany/hook.io-logs/tarball/master",
"hook.io-sdk": "https://github.com/bigcompany/hook.io-sdk/tarball/master",
"hook.io-vfs": "https://github.com/bigcompany/hook.io-vfs/tarball/master",
"hpm": "https://github.com/bigcompany/hpm/tarball/master",
"hyperdirect": "0.0.0",
"hyperquest": "^1.0.1",
"i18n-2": "^0.4.6",
"is-docker": "^1.1.0",
"jugglingdb-nano": "https://github.com/Marak/nano-adapter/tarball/master",
"merge-params": "https://github.com/bigcompany/merge-params/tarball/master",
"merge-stream": "^0.1.8",
"microcule": "https://github.com/stackvana/microcule/tarball/master",
"microcule-examples": "https://github.com/stackvana/microcule-examples/tarball/master",
"microtail": "https://github.com/marak/microtail/tarball/master",
"mime": "^1.2.11",
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"ms": "2.0.0",
"mschema": "https://github.com/mschema/mschema/tarball/master",
"mschema-forms": "https://github.com/mschema/mschema-forms/tarball/master",
"mschema-rpc": "https://github.com/mschema/mschema-rpc/tarball/master",
"nano": "^6.2.0",
"node-uuid": "^1.4.3",
"npm": "^6.9.0",
"octonode": "^0.7.6",
"parse-service-request": "https://github.com/bigcompany/parse-service-request/tarball/master",
"passport": "^0.2.1",
"passport-github": "^0.1.5",
"posix": "^4.1.1",
"redis": "2.8.0",
"request": "^2.48.0",
"resource": "https://github.com/bigcompany/resource/tarball/master",
"resource-email": "0.5.x",
"resource-forms": "https://github.com/bigcompany/forms/tarball/master",
"resource-http": "https://github.com/bigcompany/http/tarball/master",
"resource-user": "https://github.com/bigcompany/user/tarball/master",
"rimraf": "^2.6.3",
"route-parser": "0.0.4",
"rss": "^1.1.1",
"run-remote-service": "https://github.com/bigcompany/run-remote-service/tarball/master",
"run-service": "https://github.com/bigcompany/run-service/tarball/master",
"slug": "1.1.0",
"stream-buffers": "^1.1.0",
"stripe": "^6.34.0",
"then-sleep": "^1.0.1",
"through2": "^0.6.3",
"timezone-support": "^1.8.1",
"tree-kill": "^0.1.1",
"trycatch": "^1.5.20",
"view": "https://github.com/bigcompany/view/tarball/master",
"websocket-stream": "^3.1.0",
"ws": "^6.2.1"
},
"devDependencies": {
"eslint-plugin-html": "^5.0.3",
"gulp-mustache": "^4.1.1",
"gulp-rename": "*",
"nyc": "11.1.x",
"tap": "^12.6.2",
"tape": "^4.10.1"
},
"scripts": {
"test": "tap --no-timeout tests/**/*-test.js",
"start": "sh scripts/start.sh"
},
"engines": {
"node": ">=10.15.3"
},
"nyc": {
"all": false,
"include": [
"lib/**/*.js",
"view/**/*.js"
],
"exclude": [
"coverage",
"locales",
"modules",
"white",
"docs",
"docker",
"public",
"reports",
"tests",
"node_modules"
],
"reporter": [
"html",
"lcov",
"clover"
],
"report-dir": "./reports/coverage"
},
"author": "Marak",
"license": "AGPL"
}