This repository was archived by the owner on Apr 16, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.75 KB
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
{
"name": "galenframework-cli",
"version": "2.4.4",
"description": "Just the node wrapper for the Galen Framework.",
"homepage": "https://github.com/hypery2k/galenframework-cli",
"bugs": {
"url": "https://github.com/hypery2k/galenframework-cli/issues"
},
"keywords": [
"galen",
"galenframework",
"responsive",
"test",
"testing",
"webdriver",
"selenium",
"TDD",
"BDD"
],
"author": "Martin Reinhardt",
"scripts": {
"galen": "bin/galen",
"postinstall": "node postinstall.js",
"test": "npm run check && npm run unit-test",
"unit-test": "jasmine --reporter=jasmine-ts-console-reporter spec/*.spec.js",
"lint": "eslint --fix *.js",
"check": "npm audit",
"coverage": "nyc --reporter=lcov --temp-dir=coverage npm run test && istanbul-coveralls --no-rm"
},
"bin": {
"galen": "bin/galen"
},
"preferGlobal": true,
"dependencies": {
"check": "^1.0.0",
"chromedriver": "^101.0.0",
"fs-extra": "0.26.2",
"galenframework": "^2.4.4-build43",
"geckodriver": "^3.0.1",
"httpreq": "^0.5.2",
"yargs": "3.30.0"
},
"devDependencies": {
"@toolisticon/istanbul-coveralls": "1.0.0",
"coveralls": "3.0.2",
"ejs": "^3.1.7",
"eslint": "^8.15.0",
"jasmine": "^4.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
"nyc": "^14.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypery2k/galenframework-cli.git"
},
"license": "MIT",
"engine-strict": true,
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"snyk": true
}