-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
52
53
54
55
56
57
58
59
60
{
"name": "@mark48evo/gps",
"version": "1.0.2",
"description": "A GPS processing tool",
"author": "Aurimas Niekis <[email protected]> (https://github.com/Mark48Evo)",
"license": "MIT",
"repository": "Mark48Evo/gps",
"contributors": [
{
"name": "Aurimas Niekis",
"email": "[email protected]"
}
],
"module": "src/index.js",
"scripts": {
"rollup": "rollup -c rollup.config.js",
"prepublishOnly": "rollup -c rollup.config.js",
"pretest": "eslint ./src",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"bin": {
"gps": "bin/gps.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@mark48evo/system-events": "^1.0.4",
"@mark48evo/system-gps": "^1.0.3",
"@mark48evo/system-state": "^1.2.0",
"@mark48evo/ubx-packet-parser": "^1.0.2",
"@mark48evo/ubx-protocol-parser": "^1.0.1",
"@mark48evo/usb-serialport-device-lister": "^1.0.0",
"amqplib": "^0.5.2",
"debug": "^3.1.0",
"rabbitmq": "0.0.2",
"redis": "^2.8.0",
"serialport": "^6.2.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/node": "^7.0.0-beta.51",
"@babel/plugin-external-helpers": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"rollup": "^0.61.2",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-eslint": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}