-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 2.61 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
78
79
80
81
82
83
{
"name": "@ekino/veggies",
"version": "1.4.0",
"description": "Veggies is an awesome cucumberjs library for API/CLI testing. Great for testing APIs built upon Express, Koa, HAPI, Loopback and others. It's also the perfect companion for testing CLI applications built with commander, meow & Co.",
"tags": [
"bdd",
"cucumber",
"gherkin",
"testing",
"api",
"http",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/ekino/veggies.git"
},
"main": "src/index.js",
"bin": "./bin/veggies.js",
"author": "plouc <https://github.com/plouc>",
"maintainers": [
{
"name": "Raphaël Benitte"
}
],
"license": "MIT",
"engines": {
"node": ">=12"
},
"engineStrict": true,
"dependencies": {
"arg": "5.0.1",
"chai": "4.3",
"fs-extra": "10.0",
"glob": "7.1",
"jest-diff": "27.0",
"js-yaml": "4.1",
"lodash": "4.17",
"moment-timezone": "0.5.33",
"natural-compare": "1.4",
"pretty-format": "27.0",
"request": "2.88",
"tough-cookie": "4.0"
},
"devDependencies": {
"@commitlint/config-conventional": "12.x",
"@cucumber/cucumber": "8.x",
"babylon": "6.x",
"chalk": "4.x",
"commitlint": "12.x",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "2.x",
"coveralls": "3.x",
"eslint": "7.x",
"gh-pages": "3.x",
"husky": "7.x",
"jest": "27.x",
"jsdoc": "3.x",
"lint-staged": "11.x",
"minami": "1.x",
"mustache": "4.x",
"nock": "13.x",
"prettier": "2.x",
"sinon": "11.x"
},
"peerDependencies": {
"@cucumber/cucumber": ">=8.0.0"
},
"scripts": {
"test": "jest --verbose --colors tests",
"test-cover": "jest --verbose --colors --coverage",
"test-cli": "veggies --require tests/cli/support tests/cli/features",
"fmt": "prettier --color --write \"{src,tests,scripts}/**/*.js\" \"*.{yml,yaml,json}\"",
"check-fmt": "prettier --list-different \"{src,tests,scripts}/**/*.js\" \"*.{yml,yaml,json}\"",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"readme": "node scripts/generate_readme",
"check-readme": "node scripts/generate_readme --check",
"doc": "jsdoc -c .jsdoc.json --verbose",
"doc-pub": "yarn run readme && yarn run doc && gh-pages -d _doc",
"examples": "veggies --require examples/support examples/features"
}
}