forked from Azure/sql-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 KB
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
{
"name": "sql-action",
"version": "1.0.0",
"private": true,
"description": "Azure Sql action",
"main": "lib/main.js",
"scripts": {
"build": "rimraf ./lib && webpack --config ./webpack.config.js --mode production",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/sql-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",
"@actions/tool-cache": "^2.0.1",
"azure-actions-webclient": "^1.0.3",
"glob": "^7.1.4",
"mssql": "^8.1.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.13",
"@types/mssql": "^8.0.0",
"@types/node": "^12.0.4",
"@types/winreg": "^1.2.30",
"jest": "^29.1.1",
"jest-circus": "^24.7.1",
"rimraf": "~2.6.2",
"ts-jest": "^29.0.3",
"ts-loader": "~5.2.2",
"typescript": "^4.5.4",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
}
}