-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "@cucumber/gherkin",
"version": "32.0.0",
"description": "Gherkin parser",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build:cjs": "tsc --build tsconfig.build-cjs.json",
"build:esm": "tsc --build tsconfig.build-esm.json",
"build:legacy": "tsc --build tsconfig.build.json",
"build": "npm run build:cjs && npm run build:esm && npm run build:legacy",
"clean": "npm run clean-tsc && rm -rf node_modules package-lock.json acceptance && rm -rf node_modules package-lock.json",
"clean-tsc": "rm -rf dist",
"test": "mocha",
"prepublishOnly": "tsc --build tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cucumber/gherkin.git"
},
"keywords": [
"gherkin",
"cucumber"
],
"author": "Aslak Hellesøy",
"license": "MIT",
"bugs": {
"url": "https://github.com/cucumber/gherkin/issues"
},
"homepage": "https://github.com/cucumber/gherkin",
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "22.13.10",
"commander": "^13.0.0",
"core-js": "3.41.0",
"mocha": "11.1.0",
"ts-node": "10.9.2",
"typescript": "5.8.2"
},
"dependencies": {
"@cucumber/messages": ">=19.1.4 <28"
},
"directories": {
"test": "test"
}
}