-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "@platformatic/runtime",
"version": "0.28.1",
"description": "",
"main": "index.js",
"bin": {
"plt-runtime": "./runtime.mjs"
},
"scripts": {
"test": "npm run lint && c8 -x fixtures -x test node --test && tsd",
"lint": "standard | snazzy"
},
"author": "Matteo Collina <hello@matteocollina.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/platformatic.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/platformatic/platformatic/issues"
},
"homepage": "https://github.com/platformatic/platformatic#readme",
"devDependencies": {
"c8": "^8.0.0",
"execa": "^7.1.1",
"snazzy": "^9.0.0",
"split2": "^4.2.0",
"standard": "^17.1.0",
"tsd": "^0.28.1"
},
"dependencies": {
"@hapi/topo": "^6.0.2",
"@platformatic/composer": "workspace:*",
"@platformatic/config": "workspace:*",
"@platformatic/db": "workspace:*",
"@platformatic/service": "workspace:*",
"@platformatic/utils": "workspace:*",
"close-with-grace": "^1.2.0",
"commist": "^3.2.0",
"desm": "^1.3.0",
"es-main": "^1.2.0",
"fastify": "^4.18.0",
"fastify-undici-dispatcher": "^0.4.1",
"help-me": "^4.2.0",
"minimist": "^1.2.8",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"undici": "^5.22.1"
},
"standard": {
"ignore": [
"**/dist/*"
]
}
}