All Downloads are FREE. Search and download functionalities are using the official Maven repository.

npm.model_package_json.ftl Maven / Gradle / Ivy

Go to download

Tool that generates code for RPC between the Kurento Media Server and remote libraries.

There is a newer version: 7.1.0
Show newest version
<#assign api_js=module.code.api.js>
<#assign node_name=api_js.nodeName>
<#if api_js.npmGit??>
  <#assign bowerGit=api_js.npmGit>

package.json
{
  "name": "${node_name}",
  "version": "${module.version}",
  "description": "${api_js.npmDescription}",
<#if bowerGit??>
  "repository": {
    "type": "git",
    "url": "https://github.com/${bowerGit}.git"
  },

<#if node_name != "kurento-client-core"
  && node_name != "kurento-client-elements"
  && node_name != "kurento-client-filters">
  "scripts": {
    "prepublish": "grunt"
  },
  "dependencies": {
    "es6-promise": "^2.0.1",
    "inherits": "^2.0.1",
    "promisecallback": "^0.0.3"
  },
  "devDependencies": {
    "bower": "^1.0.0",
    "grunt": "^1.0.0",
    "grunt-browserify": "^5.0.0",
    "grunt-contrib-clean": "^2.0.0",
    "grunt-jsdoc": "^2.0.0",
    "grunt-npm2bower-sync": "^0.9.1",
  <#if bowerGit??>
    "grunt-shell": "^3.0.0",
  
    "minifyify": "^7.0.0"
  },

  "keywords": [
    "Kurento",
    "module",
    "plugin"
  ],
  "main": "lib/index.js"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy