-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "@mark48evo/esc-influxdb",
"version": "1.1.0",
"description": "A utility for saving ESC message data to InfluxDB",
"author": "Aurimas Niekis <aurimas@niekis.lt> (https://github.com/Mark48Evo)",
"license": "MIT",
"repository": "Mark48Evo/esc-influxdb",
"contributors": [
{
"name": "Aurimas Niekis",
"email": "aurimas@niekis.lt"
}
],
"module": "src/index.js",
"main": "dist/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": {
"esc-influxdb": "bin/esc-influxdb.js"
},
"files": [
"bin/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {
"@mark48evo/system-esc": "^1.0.0",
"amqplib": "^0.5.2",
"debug": "^3.1.0",
"influx": "^5.0.7",
"pmx": "^1.6.7"
},
"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.0.1",
"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"
}
}