forked from e2ebridge/e2e-bridge-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.41 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
{
"name": "e2e-bridge-cli",
"version": "2.0.1",
"scripts": {
"start": "node cli.js",
"test": "cross-env node $NODE_DEBUG_OPTION ./node_modules/jasmine-xml-reporter/bin/jasmine.js",
"test:with-coverage": "nyc --reporter=text-summary ./node_modules/jasmine-xml-reporter/bin/jasmine.js",
"coverage:html": "nyc report --reporter=html",
"coverage:cobertura": "nyc report --reporter=cobertura",
"coverage:summary": "nyc report --reporter=text-summary",
"coverage:text": "nyc report --reporter=text"
},
"bin": {
"e2ebridge": "./cli.js"
},
"dependencies": {
"async": "^2.6.1",
"clorox": "^1.0.1",
"e2e-bridge-lib": "^2.0.0",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"prompts": "^0.1.8",
"tty-table": "^2.6.7"
},
"author": {
"name": "Scheer E2E AG",
"email": "support@e2ebridge.com"
},
"maintainers": [
{
"name": "Jakub Zakrzewski",
"email": "jzakrzewski@e2ebridge.ch"
}
],
"contributors": [
{
"name": "Django Ruppmann",
"email": "druppmann@e2ebridge.com"
}
],
"license": "MIT",
"description": "CLI interface to E2E Bridge",
"keywords": [
"cli",
"e2e"
],
"repository": {
"type": "git",
"url": "https://github.com/e2ebridge/e2e-bridge-cli.git"
},
"devDependencies": {
"cross-env": "^5.1.5",
"jasmine": "^3.1.0",
"jasmine-xml-reporter": "^1.2.1",
"nyc": "^12.0.2"
}
}