-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "slack-notification",
"version": "1.0.0",
"description": "Slack Notification task with advanced slack message customization for Azure DevOps",
"main": "slacknotification.js",
"scripts": {
"clean": "rimraf dist && npm run clean-js && npm run clean-map",
"clean-js": "rimraf buildtask/**/*.js",
"clean-map": "rimraf buildtask/**/*.map",
"lint": "tslint -c tslint.json buildtask\\SlackNotification\\**\\*.ts",
"compile": "npm run lint && tsc --project ./buildtask",
"build": "npm run move-npm && npm run restore-prod && npm run lint && npm run compile && npm run move-task",
"test": "echo \"No test specified\" && exit 0",
"move-npm": "mkdirp dist/buildtask/SlackNotification && copyfiles \"./package.json\" dist/buildtask/SlackNotification",
"move-task": "copyfiles \"./buildtask/SlackNotification/**/!(*.ts)\" dist",
"restore-prod": "pushd \"dist/buildtask/SlackNotification\" && npm install --only=production && popd",
"publish": "tfx extension publish --manifest-globs vss-extension.json",
"publish-local": "tfx build tasks upload --task-path ./dist/buildtask/SlackNotification"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kasunkv/slack-notification.git"
},
"keywords": [
"slack",
"vsts",
"notification"
],
"author": "Kasun Kodagoda <'[email protected]'>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasunkv/slack-notification/issues"
},
"homepage": "https://github.com/kasunkv/slack-notification#readme",
"dependencies": {
"@sentry/node": "^5.15.5",
"@slack/web-api": "^5.8.1",
"azure-pipelines-task-lib": "^2.9.5",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@sentry/types": "^5.15.5",
"@types/jasmine": "^3.5.10",
"@types/node": "^14.0.1",
"@types/q": "^1.5.4",
"@types/request": "^2.48.5",
"@types/sinon": "^9.0.1",
"copyfiles": "^2.2.0",
"istanbul": "^0.4.5",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"karma-jasmine": "^3.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^5.0.2",
"phantomjs": "^2.1.7",
"remap-istanbul": "^0.13.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.9.2"
}
}