mediacentral-publish
Version:
A publish tool for publishing cloud-ux projects
62 lines (61 loc) • 1.51 kB
JSON
{
"name": "mediacentral-publish",
"version": "0.3.9",
"description": "A publish tool for publishing cloud-ux projects",
"main": "lib/publish.js",
"scripts": {
"test": "jest",
"lint-fix": "eslint --ext .jsx --ext .js --fix ./libES6",
"babel": "babel libES6 --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/avid-technology"
},
"keywords": [
"MediaCentral",
"Avid",
"publish"
],
"author": "Artur Ziemba artur.ziemba@avid.com>",
"license": "SEE LICENSE IN EULA.md",
"dependencies": {
"atob": "^2.1.2",
"ejs": "^3.1.8",
"fs-extra": "10.1.0",
"joi": "^17.7.0",
"js-yaml": "^4.1.0",
"log4js": "^6.7.0",
"mediacentral-feature-pack": "0.1.2",
"mediacentral-sign": "0.1.2",
"mediacentral-upload": "0.1.3",
"normalize-path": "^3.0.0",
"npm": "^8.0.0",
"randomstring": "^1.2.3",
"util.promisify": "^1.1.1"
},
"bin": {
"mediacentral-publish": "./bin/publish.js"
},
"preferGlobal": true,
"devDependencies": {
"@babel/cli": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"jest": "^27.0.6"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"libES6/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"lib/"
],
"setupFiles": [
"./tests/jest.setup.js"
]
}
}