-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gherkin-detailer",
"version": "2.4.0",
"description": "gherkin-detailer is a tool that check the gherkins included in you project and lists them, highlights their similarities.",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ext .ts",
"pre-test": "mkdir -p fixtures/features/empty-folder/",
"test": "npm run pre-test && mocha --config=./mocharc.json",
"test-watch": "npm run pre-test && mocha --config=./mocharc.json",
"clean": "rm -rf dist",
"prepare-dist": "mkdir -p dist/templates; cp src/templates/* dist/templates",
"build": "npm run clean; npm run prepare-dist; tsc -p tsconfig.build.json",
"postinstall": "npm run prepare-dist"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"gherkin-detailer": "dist/index.js"
},
"author": {
"name": "Alessandro (silversonicaxel) Rabitti",
"url": "https://github.com/silversonicaxel"
},
"repository": {
"type": "git",
"url": "https://github.com/silversonicaxel/gherkin-detailer"
},
"homepage": "https://silversonicaxel.gitbook.io/gherkin-detailer/",
"bugs": {
"url": "https://github.com/silversonicaxel/gherkin-detailer/issues"
},
"engines": {
"node": ">=10.12.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"del": "^7.1.0",
"fuzzyset.js": "^1.0.7",
"moment": "^2.30.1",
"mustache": "^4.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/del": "^4.0.0",
"@types/fuzzyset.js": "^0.0.5",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.9",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"mocha": "^10.6.0",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tslint": "^6.1.2",
"typescript": "^5.5.3"
},
"keywords": [
"gherkin-detailer",
"gherkins",
"features",
"scenarios",
"states",
"actions",
"outcomes",
"list",
"similarities"
]
}