forked from APIDevTools/swagger-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.9 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
{
"name": "swagger-parser",
"version": "3.4.1",
"description": "Swagger 2.0 parser and validator for Node and browsers",
"keywords": [
"swagger",
"json",
"yaml",
"parse",
"parser",
"validate",
"validator",
"validation",
"spec",
"specification",
"schema",
"reference",
"dereference"
],
"author": {
"name": "James Messinger",
"url": "http://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://bigstickcarpet.github.io/swagger-parser",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib --fix && jscs lib --verbose",
"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 --bail --async-only --recursive tests/fixtures tests/specs",
"istanbul": "istanbul cover _mocha --dir coverage/node -- --bail --recursive tests/fixtures tests/specs",
"karma": "karma start --single-run",
"test": "npm run browserify -- --test && npm run istanbul && npm run karma",
"upgrade": "ncu --upgradeAll && npm update && bower update",
"bump": "bump --prompt --grep lib/index.js 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/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.7.1",
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"http-server": "^0.8.5",
"istanbul": "^0.4.1",
"jscs": "^2.7.0",
"karma": "^0.13.16",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.0",
"karma-verbose-reporter": "0.0.3",
"mocha": "^2.3.4",
"node-sass": "^3.4.2",
"npm-check-updates": "^2.5.6",
"phantomjs": "^1.9.19",
"simplifyify": "^2.0.1",
"sinon": "^1.17.2",
"superagent": "^1.6.1",
"version-bump-prompt": "^1.5.2"
},
"dependencies": {
"call-me-maybe": "^1.0.1",
"debug": "^2.2.0",
"es6-promise": "^3.0.2",
"json-schema-ref-parser": "^1.4.1",
"ono": "^2.0.1",
"swagger-methods": "^1.0.0",
"swagger-schema-official": "2.0.0-bab6bed",
"z-schema": "^3.16.1"
}
}