-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.56 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
{
"name": "openapi-resolver",
"version": "0.0.0",
"description": "Open API Resolver - Javascript library to connect to parse and resolve openapi-enabled APIs via browser or nodejs",
"main": "lib/commonjs.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/openapi-resolver.browser.min.js",
"repository": "[email protected]:Authress-Engineering/openapi-resolver.js.git",
"contributors": [
"Authress Developers <[email protected]>"
],
"files": [
"LICENSE",
"README.md",
"package.json",
"lib",
"es",
"dist/openapi-resolver.browser.js",
"dist/openapi-resolver.browser.min.js",
"dist/openapi-resolver.browser.min.js.map"
],
"config": {
"deps_check_dir": ".deps_check"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build",
"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/",
"test": "cross-env BABEL_ENV=commonjs jest --runInBand --config ./config/jest/jest.unit.coverage.config.js",
"test:unit": "cross-env BABEL_ENV=commonjs jest --runInBand --config ./config/jest/jest.unit.config.js",
"test:unit:watch": "cross-env BABEL_ENV=commonjs jest --runInBand --watch --config ./config/jest/jest.unit.config.js",
"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",
"clean": "rimraf ./dist ./lib ./es ./.deps_check ./coverage"
},
"keywords": [
"oai",
"openapi",
"openapi spec",
"swagger",
"js",
"spec",
"resolver",
"json-refs"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "=7.18.6",
"@babel/core": "=7.18.5",
"@babel/plugin-proposal-class-properties": "=7.18.6",
"@babel/plugin-proposal-object-rest-spread": "=7.18.6",
"@babel/plugin-transform-runtime": "=7.18.6",
"@babel/preset-env": "=7.18.6",
"@babel/register": "=7.18.6",
"babel-loader": "=8.2.5",
"buffer": "^6.0.3",
"commander": "^9.4.0",
"core-js": "^3.23.5",
"cross-env": "=7.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "=8.5.0",
"eslint-plugin-import": "=2.26.0",
"eslint-plugin-prettier": "=4.2.1",
"expect": "^28.0.2",
"fs-extra": "^10.1.0",
"glob": "=8.0.3",
"https-browserify": "^1.0.0",
"husky": "^8.0.1",
"inspectpack": "=4.7.1",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"json-loader": "=0.5.7",
"license-checker": "=25.0.1",
"lint-staged": "=12.5.0",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "=0.11.6",
"node-fetch": "^3.3.0",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"prettier": "^2.3.0",
"process": "^0.11.10",
"rimraf": "=3.0.2",
"stream-http": "^3.2.0",
"terser-webpack-plugin": "^5.0.3",
"url": "^0.11.0",
"util": "^0.12.4",
"webpack": "^5.73.0",
"webpack-bundle-size-analyzer": "=3.1.0",
"webpack-cli": "=4.10.0",
"webpack-stats-plugin": "=1.0.3"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@babel/runtime-corejs3": "^7.18.9",
"js-yaml": "^4.1.0",
"lodash.clonedeepwith": "^4.5.0"
}
}