-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rosbag",
"version": "4.0.1",
"license": "Apache-2.0",
"repository": "cruise-automation/rosbag.js",
"dependencies": {
"buffer": "6.0.3",
"heap": "0.2.7",
"int53": "1.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"main": "./dist/node",
"browser": "./dist/web",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"prepack": "yarn run build",
"lint": "yarn run tsc --noEmit && eslint src && prettier -l 'src/**/*.ts'",
"lint:fix": "eslint --fix src && prettier --write -l 'src/**/*.ts'",
"test": "yarn run jest --verbose && yarn run lint",
"clean": "rm -rf build dist",
"build": "yarn run clean && mkdir -p dist && yarn run build-node && yarn run build-web",
"build-node": "cross-env ROSBAG_TARGET=node webpack --mode development",
"build-web": "cross-env ROSBAG_TARGET=web webpack --mode development"
},
"devDependencies": {
"@types/heap": "0.2.31",
"@types/int53": "1.0.0",
"@types/jest": "29.5.1",
"@types/node": "20.2.3",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"compressjs": "1.0.3",
"cross-env": "7.0.3",
"eslint": "8.41.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-cli": "29.5.0",
"jest-junit": "16.0.0",
"lodash.range": "3.2.0",
"lz4js": "0.2.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"typescript": "5.0.4",
"webpack": "5.84.0",
"webpack-cli": "5.1.1",
"webpack-node-externals": "3.0.0"
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"trailingComma": "es5"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"preset": "ts-jest"
}
}