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
78 lines (78 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "galenframework",
"version": "2.4.4",
"description": "The command line tool to use the Galen Framework. This includes the wrapper above and webdriver downloads for different browsers",
"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",
"build": "npm run tsc",
"tsc": "tsc",
"postinstall": "node postinstall.js",
"test": "npm run check && npm run unit-test",
"unit-test": "jasmine --reporter=jasmine-ts-console-reporter spec/*.spec.js",
"check": "npm audit",
"lint": "eslint lib/*.js",
"coverage": "nyc --reporter=lcov --temp-dir=coverage npm run test && istanbul-coveralls --no-rm"
},
"bin": {
"galen": "bin/galen"
},
"main": "index",
"dependencies": {
"adm-zip": "^0.5.5",
"fs-extra": "0.30.0",
"kew": "0.7.0",
"npm-which": "3.0.1",
"npmconf": "^2.1.3",
"npmlog": "^6.0.2",
"progress": "1.1.8",
"replace-in-file": "1.0.2",
"request": "2.88.2",
"request-progress": "0.3.1",
"which": "1.3.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@toolisticon/istanbul-coveralls": "1.0.0",
"coveralls": "3.0.6",
"ejs": "^3.1.7",
"eslint": "^8.15.0",
"handlebars": "^4.7.7",
"jasmine": "^4.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
"marked": "^4.0.15",
"npm-force-resolutions": "0.0.3",
"nyc": "^14.1.1",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"resolutions": {
"handlebars": "^4.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypery2k/galenframework-cli.git"
},
"license": "MIT",
"engine-strict": true,
"engines": {
"node": ">= 8",
"npm": ">= 5"
},
"_galenVersion": "2.4.4"
}