This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "dredd-transactions",
"version": "0.0.0-semantically-released",
"description": "Compiles HTTP Transactions (Request-Response pairs) from an API description document",
"main": "index.js",
"engines": {
"node": ">= 8"
},
"scripts": {
"prepack": "node ./scripts/prepack.js",
"clean": "rimraf ./coverage",
"lint": "bash ./scripts/commitlint.sh && eslint --ignore-path .gitignore .",
"pretest": "node ./scripts/pretest.js",
"test": "npm run clean && mocha ./test",
"ci:lint": "npm run lint",
"ci:test": "npm run test",
"ci:test:smoke": "bash ./scripts/smoke.sh",
"ci:release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/dredd-transactions"
},
"files": [
"parse",
"compile",
"README.md"
],
"dependencies": {
"fury": "3.0.0-beta.12",
"fury-adapter-apib-parser": "0.16.0",
"fury-adapter-oas3-parser": "0.9.1",
"fury-adapter-swagger": "0.27.2",
"uri-template": "1.0.1"
},
"bundledDependencies": [
"fury-adapter-apib-parser"
],
"devDependencies": {
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0",
"@commitlint/travis-cli": "8.2.0",
"chai": "4.2.0",
"chai-json-schema": "1.5.1",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.18.2",
"mocha": "6.2.1",
"mocha-lcov-reporter": "1.3.0",
"proxyquire": "2.1.3",
"rimraf": "3.0.0",
"semantic-release": "15.13.24",
"sinon": "7.5.0"
},
"keywords": [
"api",
"test",
"testing",
"documenation",
"integration",
"acceptance"
],
"author": "Apiary Czech Republic, s.r.o. <support@apiary.io>",
"license": "MIT"
}