forked from apiaryio/dredd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.44 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
{
"name": "dredd",
"version": "0.0.0-semantically-released",
"description": "HTTP API Testing Framework",
"main": "lib/dredd.js",
"bin": {
"dredd": "bin/dredd"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"lint": "conventional-changelog-lint --from=master && coffeelint src",
"build": "coffee -b -c -o lib/ src/",
"build:watch": "coffee -b -w -o lib/ src/",
"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",
"pretest": "npm run build",
"test": "mocha \"test/**/*-test.coffee\"",
"test:coverage": "scripts/coverage.sh",
"prepublish": "npm run build",
"coveralls": "scripts/coveralls.sh",
"semantic-release": "scripts/semantic-release.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/dredd"
},
"dependencies": {
"async": "^2.3.0",
"caseless": "^0.12.0",
"chai": "^4.0.2",
"clone": "^2.1.1",
"coffee-script": "^1.12.5",
"colors": "^1.1.2",
"cross-spawn": "^5.0.1",
"dredd-transactions": "^4.3.4",
"file": "^0.2.2",
"gavel": "^1.1.1",
"glob": "^7.0.5",
"html": "^1.0.0",
"htmlencode": "0.0.4",
"inquirer": "^1.1.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": {
"body-parser": "^1.17.1",
"coffee-coverage": "^2.0.1",
"coffeelint": "^1.15.7",
"conventional-changelog-lint": "^1.1.9",
"coveralls": "^2.13.0",
"cz-conventional-changelog": "^2.0.0",
"drafter": "^1.0.0",
"ect": "^0.5.9",
"express": "^4.15.2",
"hercule": "^4.0.1",
"jscoverage": "^0.6.0",
"lcov-result-merger": "^1.2.0",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^9.0.13",
"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"
}
}
}