@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
38 lines (37 loc) • 934 B
JSON
{
"name": "activity-analyzer-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.37",
"@types/winston": "^2.3.5",
"body-parser": "^1.18.1",
"express": "^4.15.4",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/mocha": "^2.2.41",
"@types/mockery": "^1.4.29",
"@types/sinon": "^2.3.3",
"@types/supertest": "^2.0.3",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"mockery": "^2.1.0",
"proxyquire": "^1.8.0",
"sinon": "^3.2.1",
"supertest": "^3.0.0",
"typescript": "^2.4.2"
}
}