swag-ng
Version:
Angular module for Swagger API integrations
70 lines (69 loc) • 1.6 kB
JSON
{
"name": "swag-ng",
"version": "0.0.2",
"description": "Angular module for Swagger API integrations",
"author": "Michael Wolbert <michael.wolbert@gmail.com>",
"keywords": [
"angular",
"ng",
"swagger",
"swagger-js",
"swagger-client",
"rest",
"webservice"
],
"maintainers": [
{
"name": "Michael Wolbert",
"email": "michael.wolbert@gmail.com",
"web": "http://michaelwolbert.nl"
}
],
"homepage": "https://github.com/mchlbrnd/swagNg",
"demos": [
"https://github.com/mchlbrnd/swagNg"
],
"bugs": {
"url": "https://github.com/mchlbrnd/swagNg"
},
"repository": {
"type": "git",
"url": "git@github.com:mchlbrnd/swagNg.git"
},
"licenses": [
{
"name": "MIT",
"url": "https://github.com/mchlbrnd/swagNg/blob/master/LICENSE"
}
],
"engines": {
"node": ">=0.10.0"
},
"main": "./dist/swagNg.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "watchify example/src/app.js -d -o example/bundle.js -v",
"dist": "browserify src/swagNg.js -o dist/swagNg.js"
},
"dependencies": {
"angular": "^1.3.1",
"jquery": "^2.1.1",
"swagger-client": "^2.0.41"
},
"devDependencies": {
"browserify": "*",
"browserify-shim": "*",
"watchify": "*"
},
"browser": {
"angular": "./node_modules/angular/angular.min.js",
"jquery": "./node_modules/jquery/dist/jquery.min.js",
"swagNg": "./src/swagNg.js"
},
"browserify": {
"transform": [ "browserify-shim" ]
},
"browserify-shim": {
"jquery": "$"
}
}