-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "@mqtt-kekw/tcp-client",
"version": "1.0.0",
"description": "A Node.js client that uses MQTT pub/sub model with a TCP Socket",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"lib"
],
"scripts": {
"build-r": "rm -fr lib/* && rollup -c",
"rollup-dev": "rm -fr lib/* && rollup -c rollup-test.config.js && node lib/index.js",
"tsc": "rm -fr outJest/* && tsc -p tsconfig-jest.json",
"prepublishOnly": "npm run jest && npm run build-r",
"jest": "jest",
"bin": "./devscript.sh"
},
"keywords": [
"mqtt",
"node.js",
"client",
"tcp",
"ws"
],
"author": "Uğurcan Emre Ataş",
"homepage": "https://github.com/ugurcanatas/mqtt-kekw#readme",
"repository": {
"type": "git",
"url": "https://github.com/ugurcanatas/mqtt-kekw.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"jest": "^27.2.5",
"rollup": "^2.58.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.6",
"typed-emitter": "^1.3.1",
"typescript": "^4.4.3"
}
}