-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
49 lines (49 loc) · 1.16 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
{
"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.9.1",
"@actions/exec": "^1.0.1",
"@actions/tool-cache": "^2.0.1",
"@tediousjs/connection-string": "^0.5.0",
"azure-actions-webclient": "^1.0.3",
"glob": "^10.3.12",
"semver": "^7.6.2",
"uuid": "^3.3.2",
"winreg": "^1.2.4"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^7.5.8",
"@types/uuid": "^3.4.4",
"@types/winreg": "^1.2.30",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"rimraf": "~2.6.2",
"ts-jest": "^29.0.3",
"ts-loader": "~9.4.2",
"typescript": "^4.5.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.5.0"
}
}