-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.18 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.18 KB
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
{
"name": "swagger-mock-validator",
"version": "9.0.0",
"description": "A CLI tool to validate mocks against swagger/OpenApi specs.",
"bin": {
"swagger-mock-validator": "./bin/swagger-mock-validator"
},
"main": "dist/api.js",
"scripts": {
"release-major": "./node_modules/.bin/gulp release --type major",
"release-minor": "./node_modules/.bin/gulp release --type minor",
"release-patch": "./node_modules/.bin/gulp release --type patch",
"test": "./node_modules/.bin/gulp",
"watch": "./node_modules/.bin/gulp watch",
"watch-e2e": "./node_modules/.bin/gulp watchE2e"
},
"repository": {
"type": "git",
"url": "git@bitbucket.org:atlassian/swagger-mock-validator.git"
},
"author": {
"name": "Ben Sayers (Atlassian)",
"email": "bsayers@atlassian.com"
},
"license": "Apache-2.0",
"engines": {
"node": ">=6.14.3"
},
"devDependencies": {
"@types/body-parser": "^1.16.0",
"@types/commander": "^2.3.31",
"@types/express": "^4.0.34",
"@types/jasmine": "^3.3.12",
"@types/js-yaml": "^3.5.29",
"@types/lodash": "^4.14.126",
"@types/node": "^12.0.0",
"@types/q": "^1.0.0",
"@types/request": "^2.0.3",
"@types/uuidjs": "^3.3.1",
"@types/validator": "^10.11.0",
"@types/verror": "^1.9.0",
"ansi-colors": "^3.2.4",
"body-parser": "^1.18.3",
"conventional-changelog": "^1.1.3",
"conventional-changelog-lint": "^1.1.0",
"express": "^4.16.3",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.1",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.0.1",
"gulp-conventional-changelog": "^2.0.19",
"gulp-filter": "^5.1.0",
"gulp-git": "^2.7.0",
"gulp-jasmine": "^4.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.7",
"minimist": "^1.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"ajv": "^6.10.0",
"commander": "^2.16.0",
"decimal.js": "^10.2.0",
"js-yaml": "^3.12.0",
"jsonpointer": "^4.0.1",
"lodash": "^4.17.10",
"request": "^2.87.0",
"swagger-parser": "5.0.2",
"uuidjs": "^4.0.3",
"validator": "^10.11.0",
"verror": "^1.8.1"
},
"types": "lib/api-types.d.ts"
}