forked from swagger-api/swagger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.03 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
114
115
116
117
118
119
{
"name": "swagger-client",
"version": "3.8.21",
"description": "SwaggerJS - a collection of interfaces for OAI specs",
"main": "dist/index.js",
"repository": "[email protected]:swagger-api/swagger-js.git",
"contributors": [
"(in alphabetical order)",
"Anna Bodnia <[email protected]>",
"Buu Nguyen <[email protected]>",
"Josh Ponelat <[email protected]>",
"Kyle Shockey <[email protected]>",
"Sahar Jafari <[email protected]>"
],
"config": {
"deps_check_dir": ".deps_check"
},
"scripts": {
"automated-release": "release-it --config ./release/.release-it.json",
"build": "cross-env NODE_ENV=production webpack -p --config ./webpack.config.js",
"build:dev": "cross-env NODE_ENV=development webpack --config ./webpack.config.js",
"build:dev:watch": "npm run build:dev -- --watch --progress",
"build:bundle": "cross-env NODE_ENV=production webpack -p --config ./webpack.bundle.config.js",
"build:bundle:dev": "cross-env NODE_ENV=development webpack --config ./webpack.bundle.config.js",
"deps": "run-s deps:license deps:size",
"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",
"deps:size": "webpack -p --config webpack.check.js --json | webpack-bundle-size-analyzer >| $npm_package_config_deps_check_dir/sizes.txt",
"test": "run-s test:unit test:webpack test:lint test:size",
"test:lint": "eslint src/ test/",
"test:size": "npm run build:bundle && bundlesize",
"test:unit": "jest --runInBand",
"test:unit:watch": "jest --watch",
"test:webpack": "mocha-webpack --interactive false --webpack-config ./webpack.test.config.js --recursive \"./test-webpack\""
},
"keywords": [
"oai",
"swagger",
"js",
"spec",
"resolver",
"json-refs"
],
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.24.1",
"bundlesize": "^0.17.0",
"clone": "^2.1.2",
"conventional-changelog-angular": "^5.0.0",
"conventional-changelog-cli": "^2.0.1",
"cross-env": "^5.1.4",
"deepmerge": "^1.3.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.11.0",
"expect": "^1.20.2",
"fetch-mock": "^5.12.0",
"glob": "^7.1.1",
"jest": "^23.1.0",
"json-loader": "^0.5.4",
"license-checker": "^8.0.3",
"mocha": "^2.4.5",
"mocha-webpack": "^1.1.0",
"npm-run-all": "^4.1.3",
"release-it": "^7.4.8",
"traverse": "^0.6.6",
"webpack": "^3.11.0",
"webpack-bundle-size-analyzer": "^2.2.0",
"xmock": "^0.3.0"
},
"dependencies": {
"@kyleshockey/js-yaml": "^1.0.1",
"@kyleshockey/object-assign-deep": "^0.4.0",
"babel-runtime": "^6.26.0",
"btoa": "1.1.2",
"buffer": "^5.1.0",
"cookie": "^0.3.1",
"cross-fetch": "0.0.8",
"deep-extend": "^0.5.1",
"encode-3986": "^1.0.0",
"fast-json-patch": "^2.0.6",
"isomorphic-form-data": "0.0.1",
"lodash": "^4.16.2",
"qs": "^6.3.0",
"querystring-browser": "^1.0.4",
"url": "^0.11.0",
"utf8-bytes": "0.0.1",
"utfstring": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/*.js?(x)",
"**/test/**/*.js?(x)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/data/",
"<rootDir>/test/specmap/data/",
"<rootDir>/test-webpack/"
]
},
"bundlesize": [
{
"path": "./browser/swagger-client.js",
"maxSize": "400 KB",
"compression": "none"
}
]
}