-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "@harver/bat",
"version": "1.1.1",
"description": "A Gherkin based DSL for testing HTTP APIs via Cucumber.JS.",
"main": "src/index.js",
"scripts": {
"prepublish": "npm run docs",
"docs": "jsdoc2md --partial docs/support/scope.hbs --partial docs/support/header.hbs --files src/steps.js> docs/step-reference.md && jsdoc2md --files src/world.js> docs/world-api.md",
"start": "node test/server",
"cucumber": "LATENCY_BUFFER=1000 ENV_FILE=test/env/dev.json API_SPEC_FILE=test/openapi.yaml cucumber-js test",
"test": "npm run lint && ./run-tests.sh",
"release": "standard-version",
"examples": "cucumber-js examples",
"lint": "eslint --config .eslintrc.json src/ test/"
},
"standard-version": {
"message": "chore: Release v%s",
"scripts": {
"posttag": "npm publish && git push --follow-tags"
}
},
"repository": {
"type": "git",
"url": "git@github.com:harver-bv/bat.git"
},
"author": "Phil Mander<philip@harver.com>",
"license": "MIT",
"homepage": "https://github.com/harver-bv/bat",
"dependencies": {
"ajv": "^6.10.2",
"chai": "^4.2.0",
"chai-match": "^1.1.1",
"chalk": "^2.4.2",
"cookie": "^0.4.0",
"jsonpath-plus": "^1.0.0",
"openapi-schema-to-json-schema": "^2.2.0",
"superagent": "^5.1.0",
"superagent-graphql": "^0.1.2",
"swagger-parser": "^8.0.0"
},
"devDependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cucumber": "^5.1.0",
"eslint": "^6.3.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-session": "^1.16.2",
"graphql": "^14.4.2",
"jsdoc-to-markdown": "^5.0.0",
"standard-version": "^7.0.0"
},
"peerDependencies": {
"cucumber": "5.x"
}
}