-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 855 Bytes
/
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
{
"name": "node-red-microservice",
"version": "0.0.1",
"description": "Example low-code microservice with Node Red",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/low-code-microservices-with-node-red/example-microservice.git"
},
"keywords": [
"microservice",
"node-red"
],
"author": "Siddhartha Lahiri",
"license": "ISC",
"bugs": {
"url": "https://github.com/low-code-microservices-with-node-red/example-microservice/issues"
},
"homepage": "https://github.com/low-code-microservices-with-node-red/example-microservice#readme",
"dependencies": {
"express": "^4.17.2",
"moment": "^2.29.1",
"node-red": "^2.1.4"
},
"devDependencies": {
"jshint": "^2.13.2"
},
"jshintConfig": {
"esversion":6
}
}