-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "jscdr",
"version": "0.0.3",
"description": "A DDS-CDR encoder/decoder library.",
"main": "dist/index.js",
"browser": "dist/index.umd.min.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --mode=development --output-filename index.umd.js",
"build:umd.min": "webpack --mode=production --output-filename index.umd.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atolab/jscdr.git"
},
"keywords": [
"DDS",
"CDR",
"ROS2",
"serialization",
"encode",
"decode"
],
"author": "Julien Enoch",
"license": "EPL-2.0 OR Apache-2.0",
"bugs": {
"url": "https://github.com/atolab/jscdr/issues"
},
"homepage": "https://github.com/atolab/jscdr#readme",
"dependencies": {
"bytebuffer": "5.0.1",
"core-js": "3.15.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.5",
"@babel/register": "7.14.5",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"webpack": "^5.92.1",
"webpack-cli": "4.7.2"
}
}