-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "@inorbit/edge-sdk",
"version": "1.5.5",
"description": "InOrbit Edge SDK",
"main": "dist/index.js",
"author": "support@inorbit.ai",
"license": "MIT",
"scripts": {
"build": "babel src -d dist --minified --source-maps --ignore 'src/**/*.test.js' && tsc -d --emitDeclarationOnly --allowJs src/index.js --outDir dist/",
"example": "babel-node example.js",
"example-multi-robot": "babel-node example-multi-robot.js",
"linter": "eslint src/"
},
"dependencies": {
"async-mqtt": "^2.6.1",
"axios": "^0.21.1",
"google-protobuf": "^3.17.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@types/node": "^16.7.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"typescript": "^4.3.5"
}
}