forked from apiaryio/dredd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.55 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
84
85
86
87
88
89
90
{
"name": "dredd",
"version": "0.0.0-semantically-released",
"description": "HTTP API Testing Framework",
"main": "lib/Dredd.js",
"bin": {
"dredd": "bin/dredd"
},
"engines": {
"node": ">=8"
},
"scripts": {
"docs:lint": "sphinx-build -nW -b linkcheck ./docs ./docs/_build",
"docs:test-extensions": "python -m unittest docs/_extensions/*.py --verbose",
"docs:build": "sphinx-build -nW -b html ./docs ./docs/_build",
"docs:serve": "sphinx-autobuild ./docs ./docs/_build",
"lint": "./scripts/commitlint.sh && eslint . bin/dredd",
"test": "mocha \"./test/**/*-test.js\"",
"test:debug": "mocha --debug-brk \"./test/**/*-test.js\"",
"e2e": "npm run e2e:apib && npm run e2e:openapi2",
"e2e:apib": "cucumber-js",
"e2e:openapi2": "cucumber-js --world-parameters=\"{\\\"apiDescriptionFormat\\\": \\\"application/swagger+yaml\\\"}\"",
"ci:lint": "npm run lint && npm run docs:lint && npm run docs:test-extensions",
"ci:docs": "npm run docs:build",
"ci:test": "npm test",
"ci:smoke": "bash ./scripts/smoke.sh",
"ci:release": "semantic-release && npm dist-tag add \"dredd@$(npm view dredd version)\" stable"
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/dredd"
},
"files": [
"bin",
"lib",
"README.md"
],
"dependencies": {
"async": "3.1.0",
"caseless": "0.12.0",
"chai": "4.2.0",
"clone": "2.1.2",
"cross-spawn": "6.0.5",
"dredd-transactions": "9.0.6",
"gavel": "8.0.4",
"glob": "7.1.4",
"html": "1.0.0",
"htmlencode": "0.0.4",
"inquirer": "6.5.1",
"js-yaml": "3.13.1",
"make-dir": "3.0.0",
"markdown-it": "9.1.0",
"optimist": "0.6.1",
"proxyquire": "2.1.3",
"ramda": "0.26.1",
"request": "2.88.0",
"spawn-args": "0.2.0",
"untildify": "4.0.0",
"uuid": "3.3.3",
"which": "1.3.1",
"winston": "2.4.0"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@commitlint/travis-cli": "8.1.0",
"body-parser": "1.19.0",
"coffeescript": "2.4.1",
"cucumber": "5.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.18.2",
"express": "4.17.1",
"mocha": "6.2.0",
"nock": "10.0.6",
"ps-node": "0.1.6",
"semantic-release": "15.13.24",
"sinon": "7.4.1"
},
"keywords": [
"api",
"test",
"testing",
"documenation",
"integration",
"acceptance"
],
"author": "Apiary Czech Republic, s.r.o. <[email protected]>",
"license": "MIT"
}