generated from foxglove/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "@foxglove/omg-support",
"private": true,
"version": "0.0.1",
"description": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/foxglove/omgidl.git"
},
"scripts": {
"clean": "yarn workspaces foreach --all run clean",
"test": "yarn workspaces foreach --all run test --color",
"lint": "yarn workspaces foreach --all run lint --color",
"lint:ci": "yarn workspaces foreach --all run lint:ci",
"build": "yarn workspaces foreach --all run build",
"parser:test": "yarn workspace @foxglove/omgidl-parser test",
"parser:build": "yarn workspace @foxglove/omgidl-parser build",
"serde:test": "yarn workspace @foxglove/omgidl-serialization test",
"serde:build": "yarn workspace @foxglove/omgidl-serialization build",
"ros2idl:test": "yarn workspace @foxglove/ros2idl-parser test",
"ros2idl:build": "yarn workspace @foxglove/ros2idl-parser build"
},
"workspaces": [
"packages/*"
],
"jest": {
"projects": [
"packages/omgidl-parser/jest.config.js",
"packages/omgidl-serialization/jest.config.js",
"packages/ros2idl-parser/jest.config.js"
]
},
"author": {
"name": "Foxglove",
"email": "contact@foxglove.dev",
"url": "https://foxglove.dev/"
},
"packageManager": "yarn@4.5.3",
"devDependencies": {
"@foxglove/eslint-plugin": "2.0.0",
"@types/jest": "29.5.14",
"eslint": "9.17.0",
"globals": "15.13.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
}
}