Files
openapi-generator/samples/openapi3/client/petstore/javascript-es6/package.json
Michael Petö 1730a4efce Fix typo in javascript generator template (#3249)
* Fix typo in javascript generator template

* Update sample client
2019-06-30 12:07:49 +08:00

31 lines
780 B
JSON

{
"name": "open_api_petstore",
"version": "1.0.0",
"description": "This_spec_is_mainly_for_testing_Petstore_server_and_contains_fake_endpoints_models__Please_do_not_use_this_for_any_other_purpose__Special_characters___",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepack": "npm run build",
"test": "mocha --compilers js:babel-core/register --recursive"
},
"browser": {
"fs": false
},
"dependencies": {
"babel-cli": "^6.26.0",
"superagent": "3.7.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"sinon": "^7.2.0"
},
"files": [
"dist"
]
}