-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
29 lines (29 loc) · 957 Bytes
/
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
{
"name": "parser-js",
"private": true,
"scripts": {
"test": "turbo run build && turbo run test",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"parser:test:unit": "turbo run test:unit --filter=@asyncapi/parser",
"parser:test": "turbo run test --filter=@asyncapi/parser",
"parser:test:browser": "turbo run test:browser --filter=@asyncapi/parser",
"parser:build": "turbo run build --filter=@asyncapi/parser",
"multi-parser:build": "turbo run build --filter=@asyncapi/multi-parser",
"multi-parser:test:unit": "turbo run test:unit --filter=@asyncapi/multi-parser",
"multi-parser:test": "turbo run test --filter=@asyncapi/multi-parser",
"prepublishOnly": "turbo run prepublishOnly"
},
"devDependencies": {
"turbo": "1.13.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}