forked from swagger-api/swagger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.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
111
112
113
{
"name": "swagger-client",
"version": "3.13.2",
"description": "SwaggerJS - a collection of interfaces for OAI specs",
"main": "lib/commonjs.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/swagger-client.browser.min.js",
"repository": "[email protected]:swagger-api/swagger-js.git",
"root": true,
"contributors": [
"(in alphabetical order)",
"Anna Bodnia <[email protected]>",
"Buu Nguyen <[email protected]>",
"Josh Ponelat <[email protected]>",
"Kyle Shockey <[email protected]>",
"Sahar Jafari <[email protected]>"
],
"files": [
"LICENSE",
"README.md",
"package.json",
"lib",
"es",
"dist/swagger-client.browser.js",
"dist/swagger-client.browser.min.js",
"dist/swagger-client.browser.min.js.map"
],
"config": {
"deps_check_dir": ".deps_check"
},
"scripts": {
"automated-release": "release-it --config ./release/.release-it.json",
"build": "run-s build:umd:browser build:commonjs build:es",
"build:umd:browser": "cross-env BABEL_ENV=browser webpack --progress --config config/webpack/browser.config.babel.js",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"lint": "eslint src/ test/",
"lint:fix": "npm run lint -- --fix",
"deps:license": "license-checker --production --csv --out $npm_package_config_deps_check_dir/licenses.csv && license-checker --development --csv --out $npm_package_config_deps_check_dir/licenses-dev.csv",
"security-audit": "run-s -sc security-audit:prod security-audit:dev",
"security-audit:prod": "npm-audit --production --only=prod --audit-level=low",
"security-audit:dev": "npm-audit --only=dev --audit-level=moderate",
"clean": "rimraf ./dist ./lib ./es ./.deps_check ./coverage"
},
"keywords": [
"oai",
"swagger",
"js",
"spec",
"resolver",
"json-refs"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "=7.13.14",
"@babel/core": "=7.13.15",
"@babel/plugin-proposal-class-properties": "=7.13.0",
"@babel/plugin-proposal-object-rest-spread": "=7.13.8",
"@babel/plugin-transform-runtime": "=7.13.15",
"@babel/preset-env": "=7.13.15",
"@babel/register": "=7.13.14",
"@char0n/npm-audit": "gist:2964395223d7943c10396f59df9a8ea0",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@release-it/conventional-changelog": "^1.1.4",
"babel-loader": "=8.2.2",
"babel-plugin-lodash": "=3.3.4",
"cross-env": "=7.0.3",
"eslint": "=7.24.0",
"eslint-config-airbnb-base": "=14.2.1",
"eslint-config-prettier": "=8.2.0",
"eslint-plugin-import": "=2.22.1",
"eslint-plugin-prettier": "=3.3.1",
"expect": "=26.6.2",
"fetch-mock": "=9.11.0",
"glob": "=7.1.6",
"husky": "=6.0.0",
"inspectpack": "=4.7.1",
"install": "=0.13.0",
"jest": "=26.6.3",
"json-loader": "=0.5.7",
"license-checker": "=25.0.1",
"lint-staged": "=10.5.4",
"lodash-webpack-plugin": "=0.11.6",
"nock": "=13.0.11",
"node-fetch": "=2.6.1",
"npm-run-all": "=4.1.5",
"prettier": "=2.2.1",
"release-it": "=12.4.3",
"rimraf": "=3.0.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "=5.32.0",
"webpack-bundle-size-analyzer": "=3.1.0",
"webpack-cli": "=4.6.0",
"webpack-stats-plugin": "=1.0.3",
"xmock": "=0.3.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.11.2",
"btoa": "^1.2.1",
"buffer": "^6.0.3",
"cookie": "~0.4.1",
"deep-extend": "~0.6.0",
"fast-json-patch": "^3.0.0-1",
"isomorphic-form-data": "~2.0.0",
"lodash": "^4.17.19",
"qs": "^6.9.4",
"querystring-browser": "^1.0.4",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
}