npm.model_package_json.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-module-creator Show documentation
Show all versions of kurento-module-creator Show documentation
Tool that generates code for RPC between the Kurento Media Server
and remote libraries.
<#assign api_js=module.code.api.js>
<#assign node_name=api_js.nodeName>
<#if api_js.npmGit??>
<#assign bowerGit=api_js.npmGit>
#if>
package.json
{
"name": "${node_name}",
"version": "${module.version}",
"description": "${api_js.npmDescription}",
<#if bowerGit??>
"repository": {
"type": "git",
"url": "https://github.com/${bowerGit}.git"
},
#if>
<#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",
#if>
"minifyify": "^7.0.0"
},
#if>
"keywords": [
"Kurento",
"module",
"plugin"
],
"main": "lib/index.js"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy