@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
36 lines (35 loc) • 889 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",
"@types/winston": "^2.3.4",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"mocha": "^3.5.0",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/sinon": "^2.3.4",
"@types/supertest": "^2.0.3",
"@types/request-promise-native": "^1.0.6",
"chai": "^4.1.2",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"sinon": "^3.2.1",
"supertest": "^3.0.0",
"typescript": "^2.4.2"
}
}