-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "@cucumber/gherkin",
"version": "30.0.4",
"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",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix",
"eslint": "eslint --ext ts,tsx --max-warnings 0",
"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.10.5",
"commander": "^12.0.0",
"core-js": "3.39.0",
"mocha": "10.8.2",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@cucumber/messages": ">=19.1.4 <=26"
},
"directories": {
"test": "test"
}
}