-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
56
57
58
59
60
61
{
"name": "@foxglove/cdr",
"version": "3.3.0",
"description": "Common Data Representation serialization and deserialization library",
"license": "MIT",
"keywords": [
"cdr",
"dds",
"rtps",
"omg",
"serialization",
"deserialization",
"serde",
"ros2"
],
"repository": {
"type": "git",
"url": "https://github.com/foxglove/cdr.git"
},
"author": {
"name": "Foxglove Technologies",
"email": "[email protected]"
},
"homepage": "https://github.com/foxglove/cdr",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "yarn clean && tsc -b",
"clean": "rimraf dist *.tsbuildinfo",
"lint:ci": "eslint --report-unused-disable-directives .",
"lint": "eslint --report-unused-disable-directives --fix .",
"prepack": "yarn build",
"prepublishOnly": "yarn lint:ci && yarn test",
"test": "jest"
},
"engines": {
"node": ">= 14"
},
"devDependencies": {
"@foxglove/eslint-plugin": "0.17.0",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.0",
"prettier": "2.4.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
}
}