-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
58
59
60
61
62
63
{
"name": "@gweninterpreter/gwen-web",
"version": "2.1.2",
"description": "NPM package providing a launcher for Gwen-Web.",
"keywords": [
"testing",
"automation",
"web",
"browser",
"gherkin",
"gwen",
"gwen-web"
],
"license": "Apache-2.0",
"homepage": "https://gweninterpreter.org/",
"bugs": {
"url": "https://github.com/gwen-interpreter/gwen-web-npm/issues"
},
"repository": "github:gwen-interpreter/gwen-web-npm",
"bin": {
"gwen": "./bin/gwen.js"
},
"files": ["bin", "dist"],
"scripts": {
"build": "tsc",
"format": "prettier '**/*.ts' --write",
"lint": "eslint . --ext .ts",
"test": "jest",
"prepare": "husky install",
"prepack": "pnpm build"
},
"dependencies": {
"@xmldom/is-dom-node": "^1.0.1",
"@xmldom/xmldom": "0.9.7",
"cachedir": "2.4.0",
"cross-spawn": "7.0.6",
"decompress": "4.2.1",
"progress": "2.0.3",
"semver": "^7.6.3",
"url-join": "4.0.1",
"xpath": "0.0.34"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cross-spawn": "6.0.2",
"@types/decompress": "4.2.4",
"@types/jest": "29.5.2",
"@types/progress": "2.0.5",
"@types/semver": "^7.5.8",
"@types/url-join": "4.0.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}