forked from apiaryio/dredd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.77 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "dredd",
"version": "0.0.0-semantically-released",
"description": "HTTP API Testing Framework",
"main": "lib/dredd.js",
"bin": {
"dredd": "bin/dredd"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"build": "babel ./src --out-dir ./lib/",
"build:watch": "babel ./src --out-dir ./lib/ --watch",
"coveralls": "scripts/coveralls.sh",
"docs:lint": "sphinx-build -nW -b linkcheck docs docs/_build/",
"docs:build": "sphinx-build -nW -b html docs docs/_build/",
"docs:serve": "sphinx-autobuild docs docs/_build/",
"docs:install": "pip install -r docs/requirements.txt",
"lint": "conventional-changelog-lint --from=master && eslint .",
"prepare": "npm run build",
"pretest": "npm run build",
"semantic-release": "scripts/semantic-release.sh",
"test": "mocha \"test/**/*-test.js\"",
"test:coverage": "scripts/coverage.sh",
"test:debug": "mocha --debug-brk \"test/**/*-test.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/dredd"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.0.0"
}
}
]
]
},
"dependencies": {
"async": "2.3.0",
"caseless": "0.12.0",
"chai": "4.0.2",
"clone": "2.1.1",
"coffee-script": "1.12.6",
"cross-spawn": "5.0.1",
"dredd-transactions": "6.0.1",
"file": "0.2.2",
"fs-extra": "5.0.0",
"gavel": "1.1.1",
"glob": "7.0.5",
"html": "1.0.0",
"htmlencode": "0.0.4",
"inquirer": "3.3.0",
"js-yaml": "3.8.3",
"markdown-it": "8.3.1",
"optimist": "0.6.1",
"pitboss-ng": "0.3.3",
"proxyquire": "1.7.10",
"request": "2.81.0",
"spawn-args": "0.2.0",
"uuid": "3.0.0",
"which": "1.2.14",
"winston": "2.2.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-preset-env": "1.6.1",
"body-parser": "1.17.1",
"coffee-coverage": "2.0.1",
"conventional-changelog-lint": "1.1.9",
"coveralls": "2.13.0",
"cz-conventional-changelog": "2.0.0",
"drafter": "1.0.0",
"ect": "0.5.9",
"eslint": "4.4.1",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"express": "4.16.2",
"hercule": "4.0.1",
"istanbul": "0.4.5",
"lcov-result-merger": "1.2.0",
"mocha": "3.0.0",
"mocha-lcov-reporter": "1.3.0",
"nock": "9.1.6",
"ps-node": "0.1.5",
"semantic-release": "7.0.2",
"sinon": "2.1.0"
},
"keywords": [
"api",
"test",
"testing",
"documenation",
"integration",
"acceptance"
],
"author": "Apiary Czech Republic, s.r.o. <[email protected]>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}