-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "evrythng-pubsub",
"version": "1.0.0",
"description": "Plugin for evrythng.js that adds PubSub connectivity with MQTT and MQTT over WebSockets.",
"main": "src/index.js",
"browser": "dist/evrythng-pubsub.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"build-dev": "webpack --config webpack.config.js --mode development",
"lint": "standard",
"test": "mocha --timeout 10000 tests/unit/index.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evrythng/evrythng-pubsub.js.git"
},
"keywords": [
"evrythng",
"iot",
"wot",
"internet of things",
"web of things",
"evrythng-mqtt",
"evrythng-ws"
],
"author": "EVRYTHNG Ltd. <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/evrythng/evrythng-pubsub.js/issues"
},
"homepage": "https://github.com/evrythng/evrythng-pubsub.js#readme",
"dependencies": {
"mqtt": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"acorn": "^6.1.1",
"ajv": "^6.10.0",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"evrythng": "^5.1.0",
"mocha": "^6.1.4",
"standard": "^12.0.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"standard": {
"globals": [
"evrythng",
"PubSub"
],
"env": [
"browser",
"mocha"
]
}
}