openapi-generator/samples/server/petstore/nodejs/package.json

21 lines
627 B
JSON
Raw Normal View History

2015-02-15 01:48:55 +00:00
{
2016-01-24 14:08:05 +00:00
"name": "swagger-petstore",
"version": "1.0.0",
"description": "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "node index.js"
},
"keywords": [
"swagger"
],
"license": "Unlicense",
"private": true,
2015-02-15 01:48:55 +00:00
"dependencies": {
"connect": "^3.2.0",
2015-11-18 02:46:33 +00:00
"js-yaml": "^3.3.0",
2016-05-04 09:56:02 +00:00
"swagger-tools": "0.10.1"
2015-02-15 01:48:55 +00:00
}
}