-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mqtt-port-forward",
"version": "0.0.7",
"description": "Forward a socket over mqtt topics",
"main": "index.js",
"scripts": {
"build": "./scripts/build.sh",
"lint": "eslint --fix src tests",
"clean": "./scripts/clean.sh",
"pretest": "npm --silent audit && ./scripts/clean.sh",
"test": "npm --silent run tst",
"tst": "NODE_ENV=test mocha --require \"@babel/register\" --exclude \"tests/system_spec.js\" tests/**",
"test:system": "NODE_ENV=test mocha --require \"@babel/register\" tests/system_spec.js",
"posttest": "eslint --fix src tests",
"watch": "npm-watch",
"prepack": "npm --silent audit && ./scripts/clean.sh && ./scripts/build.sh"
},
"author": "Dean Netherton",
"license": "ISC",
"watch": {
"build": {
"patterns": [
"src",
"scripts"
],
"extensions": "js",
"quiet": true,
"legacyWatch": false,
"delay": 1000,
"runOnChangeOnly": false,
"inherit": true
}
},
"peerDependencies": {
"debug": "*",
"mqtt-extras": "*",
"core-js": "^3.0.0"
},
"dependencies": {
"async_iter": "^1.1.3",
"bs58": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-partial-application": "^7.4.4",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-bigint": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"aws-sdk": "^2.493.0",
"aws-sdk-as-promise": "0.0.1",
"babel-eslint": "^11.0.0-beta.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"debug": "^4.1.1",
"eslint": "^6.0.1",
"eslint-config-google": "^0.13.0",
"eslint-config-stickler": "^1.0.4",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-node": "^9.1.0",
"mocha": "^6.1.4",
"mqtt": "^3.0.0",
"mqtt-extras": "0.0.3",
"npm-watch": "^0.6.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"uuid": "^3.3.2"
}
}