@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
35 lines (34 loc) • 834 B
JSON
{
"name": "ad-renderer-example",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"pretest": "npm run build",
"test": "mocha build/tests/*.js",
"build": "tsc -p ./ --outDir build/"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@mediarithmics/plugins-nodejs-sdk": "^0.3.0",
"@types/express": "^4.0.36",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"lodash": "^4.17.4",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/escape-html": "0.0.20",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.4",
"@types/supertest": "^2.0.3",
"chai": "^4.1.1",
"escape-html": "^1.0.3",
"mocha": "^3.5.0",
"sinon": "^3.2.1",
"supertest": "^3.0.0",
"typescript": "^2.4.2"
}
}