-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "gauge-js",
"version": "5.0.1",
"type": "module",
"engines": {
"node": ">=18"
},
"description": "JavaScript runner for Gauge",
"main": "index.js",
"scripts": {
"lint": "eslint index.js src/ skel/ test/ scripts/",
"test": "npm run lint && mocha --recursive",
"installPlugin": "node scripts/install.js",
"package": "node scripts/install.js --package"
},
"repository": {
"type": "git",
"url": "https://github.com/getgauge/gauge-js.git"
},
"keywords": [
"gauge",
"JavaScript"
],
"author": "ThoughtWorks, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/getgauge/gauge-js/issues"
},
"homepage": "https://github.com/getgauge/gauge-js",
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"klaw-sync": "^7.0.0",
"protobufjs": "^8.0.0",
"q": "^1.5.1"
},
"devDependencies": {
"archiver": "^7.0.1",
"chai": "^6.2.2",
"check-if-windows": "^1.0.0",
"eslint": "^10.1.0",
"eslint-plugin-mocha": "^11.2.0",
"fs-extra": "^11.3.4",
"mocha": "^11.7.5",
"mock-tmp": "^0.0.4",
"sinon": "^21.0.3"
}
}