forked from swagger-api/swagger-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.4 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
{
"name": "swagger-client",
"version": "3.0.13",
"description": "SwaggerJS - a collection of interfaces for OAI specs",
"main": "dist/index.js",
"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": {
"build": "NODE_ENV=production webpack -p --config ./webpack.config.js",
"build-bundle": "NODE_ENV=production webpack -p --config ./webpack.bundle.config.js",
"watch": "webpack --config webpack.config.js --watch --progress",
"test": "NODE_ENV=test node ./node_modules/.bin/_mocha --recursive --compilers js:babel-core/register",
"test:watch": "npm run test -- -w",
"lint": "eslint src/ test/",
"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",
"deps-check": "npm run deps-license && npm run deps-size"
},
"keywords": [
"oai",
"swagger",
"js",
"spec",
"resolver",
"json-refs"
],
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "^6.22.0",
"clone": "^2.1.0",
"deepmerge": "^1.3.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"fetch-mock": "^5.9.3",
"glob": "^7.1.1",
"json-loader": "^0.5.4",
"license-checker": "^8.0.3",
"mocha": "^2.4.5",
"traverse": "^0.6.6",
"webpack": "^2.2.1",
"webpack-bundle-size-analyzer": "^2.2.0",
"xmock": "^0.3.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"btoa": "1.1.2",
"deep-extend": "^0.4.1",
"fast-json-patch": "~1.1.8",
"isomorphic-fetch": "2.2.1",
"isomorphic-form-data": "0.0.1",
"js-yaml": "^3.8.1",
"lodash": "4.16.2",
"qs": "^6.3.0",
"url": "^0.11.0"
}
}