-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "robotremote",
"description": "A remote keyword server and client for the generic test automation suite Robot Framework.",
"keywords": [
"robotframework",
"robot framework",
"robot",
"remote server",
"acceptance",
"testing",
"test",
"ATDD"
],
"version": "1.5.3",
"preferGlobal": false,
"homepage": "https://github.com/comick/node-robotremoteserver",
"author": {
"name": "Michele Comignano",
"email": "[email protected]",
"url": "https://github.com/comick"
},
"repository": {
"type": "git",
"url": "git://github.com/comick/node-robotremoteserver.git"
},
"bugs": {
"url": "https://github.com/comick/node-robotremoteserver/issues"
},
"directories": {
"lib": "./lib",
"example": "./example",
"bin": "./bin"
},
"main": "./lib/robotremote.js",
"dependencies": {
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha && (pybot test || robot test)"
},
"engines": {
"node": ">=14.0",
"npm": ">=1.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/comick/node-robotremoteserver/raw/master/LICENSE"
}
],
"typings": "lib/robotremote.d.ts"
}