-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "gauge-js",
"version": "5.0.0",
"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.12.2",
"@grpc/proto-loader": "^0.7.13",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"klaw-sync": "^6.0.0",
"protobufjs": "^7.4.0",
"q": "^1.5.1"
},
"devDependencies": {
"archiver": "^7.0.1",
"chai": "^5.1.2",
"check-if-windows": "^1.0.0",
"eslint": "^9.15.0",
"eslint-plugin-mocha": "^10.5.0",
"fs-extra": "^11.2.0",
"mocha": "^10.8.2",
"mock-tmp": "^0.0.4",
"sinon": "^19.0.2"
}
}