-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.47 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
{
"name": "@ng-galien/node-red-pulsar",
"version": "1.1.6",
"description": "Node-RED nodes for Apache Pulsar",
"repository": {
"type": "git",
"url": "git+https://github.com/ng-galien/node-red-pulsar.git"
},
"publishConfig": {
"@ng-galien:registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "npm run build",
"release": "standard-version",
"build": "tsc && cpx 'src/**/*.html' dist --preserve && cpx 'dist/**/*.html.js' resources && rm -rf dist/**/*.html.js && cp dist/PulsarDefinition.js resources",
"clean": "rm -f *.tsbuildinfo && rm -rf dist resources && rm -f *.tgz",
"format": "eslint --max-warnings=0 --fix src/**/*.ts",
"lint": "eslint src/**/*.ts",
"deploy": "PROJECT_DIR=$(pwd) && cd ~/.node-red && npm install $PROJECT_DIR",
"start-node-red": "node-red",
"stop-node-red": "killall node-red || true",
"test": "ts-mocha --exit -p tsconfig.json test/**/*.spec.ts",
"test-node-red": "npm run stop-node-red && npm run build && npm run deploy && npm run start-node-red"
},
"node-red": {
"nodes": {
"pulsar-client": "dist/client/pulsar-client.js",
"pulsar-authentication": "dist/authentication/pulsar-authentication.js",
"pulsar-schema": "dist/schema/pulsar-schema.js",
"pulsar-consumer": "dist/consumer/pulsar-consumer.js",
"pulsar-reader": "dist/reader/pulsar-reader.js",
"pulsar-producer": "dist/producer/pulsar-producer.js"
},
"version": ">=3.0.0"
},
"keywords": [
"node-red",
"pulsar",
"apache",
"streaming",
"messaging"
],
"author": "Alexandre Boyer",
"license": "ISC",
"dependencies": {
"@types/uuid": "^10.0.0",
"pulsar-client": "^1.12.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node-red": "^1.3.5",
"@types/node-red-node-test-helper": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"chai": "^4.4.1",
"chai-wait-for": "^2.0.2",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"mocha": "^10.5.2",
"node-red": "^3.1.11",
"node-red-node-test-helper": "^0.3.4",
"sinon": "^18.0.0",
"standard-version": "^9.5.0",
"testcontainers": "^10.10.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"tslog": "^4.9.3",
"axios": "^1.7.2"
}
}