forked from APIDevTools/swagger-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.82 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
{
"name": "swagger-parser",
"version": "5.0.0",
"description": "Swagger 2.0 and OpenAPI 3.0 parser and validator for Node and browsers",
"keywords": [
"swagger",
"openapi",
"open-api",
"json",
"yaml",
"parse",
"parser",
"validate",
"validator",
"validation",
"spec",
"specification",
"schema",
"reference",
"dereference"
],
"author": {
"name": "James Messinger",
"url": "http://bigstickcarpet.com"
},
"license": "MIT",
"homepage": "http://bigstickcarpet.com/swagger-parser",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib test www/js/src --fix",
"build": "npm run lint && npm run browserify && npm run build-www",
"browserify": "simplifyify lib/index.js --outfile dist/swagger-parser.js --standalone SwaggerParser --bundle --debug --minify",
"watch": "npm run browserify -- --watch & npm run browserify-www -- --watch",
"mocha": "mocha",
"istanbul": "istanbul cover _mocha --dir coverage/node",
"karma": "karma start --single-run",
"test": "npm run browserify -- --test && npm run istanbul && npm run karma",
"upgrade": "npm-check -u",
"bump": "bump --prompt --grep dist/* --tag --push --all",
"release": "npm run upgrade && npm run build-www && npm test && npm run bump && npm publish",
"build-www": "npm run sass && npm run browserify-www",
"browserify-www": "simplifyify www/js/src/index.js --outfile www/js/bundle.js --bundle --debug --minify",
"sass": "node-sass --source-map true --output-style compressed www/css/style.scss www/css/style.min.css",
"start": "http-server -o -c-1"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/swagger-parser.git"
},
"devDependencies": {
"bower": "^1.8.2",
"chai": "^4.1.2",
"codacy-coverage": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-modular": "^4.1.2",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-host-environment": "^1.1.3",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-verbose-reporter": "0.0.6",
"mocha": "^5.0.4",
"node-sass": "^4.7.2",
"npm-check": "^5.5.2",
"simplifyify": "^4.0.0",
"superagent": "^3.8.2",
"version-bump-prompt": "^4.0.0"
},
"dependencies": {
"call-me-maybe": "^1.0.1",
"debug": "^3.1.0",
"json-schema-ref-parser": "^5.0.3",
"ono": "^4.0.5",
"openapi-schema-validation": "^0.4.1",
"swagger-methods": "^1.0.4",
"swagger-schema-official": "2.0.0-bab6bed",
"z-schema": "^3.19.1"
}
}