-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "windows-store-action",
"version": "1.0.0",
"description": "GitHub Action to deploy MSIX Packages to the Windows Store. Most code was taken from https://github.com/Microsoft/windows-dev-center-vsts-extension",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn src/publish.ts",
"publish": "node --trace-warnings -r ts-node/register -r tsconfig-paths/register src/publish.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isaacrlevin/windows-store-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/isaacrlevin/windows-store-action/issues"
},
"homepage": "https://github.com/isaacrlevin/windows-store-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@azure/storage-blob": "^12.4.0",
"@types/lodash": "^4.14.168",
"dotenv": "^8.2.0",
"glob": "^7.0.3",
"jszip": "^3.1.1",
"lodash": "^4.17.21",
"q": "^1.4.1",
"request": "^2.72.0",
"save": "^2.4.0",
"streamifier": "^0.1.1",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^13.7.1",
"@types/q": "^1.5.5",
"@types/request": "^2.48.8",
"@types/uuid": "^8.3.0",
"del": "^2.2.2",
"node-notifier": "^9.0.1",
"shelljs": "^0.7.3",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.5"
}
}