92 строки
2.8 KiB
JSON
92 строки
2.8 KiB
JSON
{
|
|
"name": "vsts-teams-calendar",
|
|
"version": "2.0.0",
|
|
"description": "Track events important to your team, view and manage days off, quickly see when sprints start and end, and more.",
|
|
"keywords": [
|
|
"vsts",
|
|
"tfs",
|
|
"extension",
|
|
"calendar",
|
|
"extensions",
|
|
"Azure DevOps",
|
|
"Visual Studio Team Services"
|
|
],
|
|
"author": "Microsoft",
|
|
"contributors": [
|
|
{
|
|
"name": "Trevor Gau",
|
|
"email": "trgau@microsoft.com"
|
|
},
|
|
{
|
|
"name": "Hailey Johnson"
|
|
},
|
|
{
|
|
"name": "Derrick Marcey",
|
|
"email": "demarcey@microsoft.com"
|
|
},
|
|
{
|
|
"name": "Serkan Inci",
|
|
"email": "serkani@microsoft.com"
|
|
},
|
|
{
|
|
"name": "Ruturaj Hagawane",
|
|
"email": "ruturajh@microsoft.com"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Microsoft/vso-team-calendar.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vso-team-calendar/issues"
|
|
},
|
|
"homepage": "https://github.com/Microsoft/vso-team-calendar#readme",
|
|
"scripts": {
|
|
"clean": "rimraf ./dist",
|
|
"compile": "npm run clean && webpack --config webpack.config.js",
|
|
"compile:dev": "npm run clean && webpack --mode development --config webpack.config.js",
|
|
"build:release": "npm run compile",
|
|
"build:dev": "npm run compile:dev && npm run postbuild",
|
|
"postbuild": "npm run package:dev -- --rev-version",
|
|
"package:dev": "node ./scripts/packageDev",
|
|
"package:release": "node ./scripts/packageRelease",
|
|
"package-extension": "tfx extension create --manifest-globs azure-devops-extension.json src/*.json",
|
|
"publish-extension": "tfx extension publish --manifest-globs azure-devops-extension.json src/*.json",
|
|
"dev:webpack": "webpack --watch",
|
|
"dev": "webpack-dev-server --hot --progress --static ./ --https --port 8888",
|
|
"dev:http": "webpack-dev-server --progress --static ./ --port 8888"
|
|
},
|
|
"dependencies": {
|
|
"@fullcalendar/core": "^4.1.0",
|
|
"@fullcalendar/daygrid": "^4.1.0",
|
|
"@fullcalendar/interaction": "^4.1.0",
|
|
"@fullcalendar/react": "^4.1.0",
|
|
"@fullcalendar/timegrid": "^4.1.0",
|
|
"azure-devops-extension-api": "^1.157.0",
|
|
"azure-devops-extension-sdk": "^2.0.11",
|
|
"azure-devops-ui": "~1.159.0",
|
|
"moment": "^2.29.4",
|
|
"react": "~16.8.1",
|
|
"react-dom": "~16.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "~16.8.2",
|
|
"@types/react-dom": "~16.8.0",
|
|
"base64-inline-loader": "^2.0.1",
|
|
"copy-webpack-plugin": "^7.0.0",
|
|
"css-loader": "^5.2.4",
|
|
"file-loader": "^6.2.0",
|
|
"rimraf": "^3.0.2",
|
|
"sass": "^1.55.0",
|
|
"sass-loader": "^10.1.1",
|
|
"style-loader": "^1.2.1",
|
|
"tfx-cli": "^0.12.0",
|
|
"ts-loader": "~5.2.2",
|
|
"typescript": "^3.9.10",
|
|
"webpack": "^5.72.1",
|
|
"webpack-cli": "^5.0.1",
|
|
"webpack-dev-server": "^4.11.1"
|
|
}
|
|
}
|