-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 904 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
35
36
37
38
39
40
41
42
43
{
"name": "pyconnector",
"version": "1.0.2",
"description": "Bridge the gap between Node.JS and Python applications",
"author": "Cristian Dobre <cristian.dobre@hbfsrobotics.com>",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cristidbr/pyconnector"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"zeromq": "^5.1.0"
},
"devDependencies": {
"mocha": "^8.0.1",
"standard": "^14.0.2"
},
"scripts": {
"test": "standard && mocha test/*.test.js",
"watch": "standard && mocha --watch test/*.test.js"
},
"readmeFilename": "README.md",
"license": "MIT",
"keywords": [
"python",
"python3",
"API",
"endpoint",
"remote",
"function",
"execution",
"bridge",
"nodeconnector"
],
"directories": {
"lib": "lib",
"test": "test",
"example": "examples"
}
}