-
-
Notifications
You must be signed in to change notification settings - Fork 232
/
package.json
38 lines (38 loc) · 1.5 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
{
"name": "generator",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo run test",
"lint": "turbo lint",
"lint:fix": "turbo run lint:fix",
"generate:assets": "turbo run generate:assets && npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md",
"generator:test": "turbo run test --filter=@asyncapi/generator",
"generator:test:dev": "turbo run test:dev",
"generator:test:unit": "turbo run test:unit --filter=@asyncapi/generator",
"generator:test:integration": "turbo run test:integration --filter=@asyncapi/generator",
"generator:test:cli": "turbo run test:cli --filter=@asyncapi/generator",
"generator:test:cleanup": "turbo run test:cleanup --filter=@asyncapi/generator",
"generator:docs": "turbo run docs --filter=@asyncapi/generator",
"generator:docker:build": "turbo run docker:build --filter=@asyncapi/generator",
"generator:lint": "turbo run lint --filter=@asyncapi/generator",
"generator:lint:tpl:validator": "turbo run lint:tpl:validator --filter=@asyncapi/generator",
"generator:update:snapshot": "turbo run test:integration:update --filter=@asyncapi/generator",
"nunjucks-filters:test": "turbo run test --filter=@asyncapi/nunjucks-filters"
},
"devDependencies": {
"markdown-toc": "^1.2.0",
"turbo": "1.13.3"
},
"engines": {
"node": ">=18.12.1"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}