forked from mablhq/github-run-tests-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 901 Bytes
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
{
"name": "mabl-github-deployments-action",
"version": "0.0.1",
"description": "mabl github action for GitHub pipelines integration",
"main": "lib/index.js",
"scripts": {
"test": "tsc && mocha ./tests/_suite.js",
"build": "tsc",
"release": "npm install && npm run build && npm prune --production && git add -f node_modules/* && git add -f lib/*"
},
"author": "mabl",
"dependencies": {
"@actions/core": "^1.2.0",
"async-retry": "^1.2.3",
"azure-pipelines-task-lib": "^2.8.0",
"cli-table3": "^0.5.1",
"moment": "^2.24.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"typed-rest-client": "^1.2.0",
"xmlbuilder": "^13.0.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/q": "^1.5.2",
"@types/request-promise-native": "^1.0.16"
}
}