-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.21 KB
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
{
"name": "swagger-stats-v1",
"packageManager": "yarn@3.1.1",
"private": true,
"version": "1.0.0-alpha.1",
"description": "Instant Observability for Node.js microservices",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"build": "yarn run build:core && yarn run build:integrations && yarn run build:prometheus && yarn run build:node",
"test": "yarn run test:integrations && yarn run test:prometheus",
"test:prometheus": "yarn workspace @swaggerstats/prometheus test",
"test:integrations": "yarn workspace @swaggerstats/integrations test",
"build:core": "yarn workspace @swaggerstats/core compile",
"build:integrations": "yarn workspace @swaggerstats/integrations compile",
"build:prometheus": "yarn workspace @swaggerstats/prometheus compile",
"build:node": "yarn workspace @swaggerstats/node compile",
"build:examples": "yarn run build:examples:express && yarn run build:examples:hapi",
"build:examples:express": "yarn docker build @swaggerstats/examples-express -t sws-example-express",
"build:examples:hapi": "yarn docker build @swaggerstats/examples-hapi -t sws-example-hapi",
"build:collector": "yarn docker build @swaggerstats/collector -t sws-collector"
},
"repository": {
"type": "git",
"url": "https://github.com/slanatech/swagger-stats"
},
"author": "https://github.com/slanatech",
"homepage": "https://slanatech.github.io/swagger-stats/",
"bugs": {
"url": "https://github.com/slanatech/swagger-stats/issues",
"email": "sv2@slana.tech"
},
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@types/node-static": "^0.7.7",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"engines": {
"node": ">= 14"
},
"dependenciesMeta": {
"eslint@8.5.0": {
"unplugged": true
}
}
}