-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@vjeko.com/azure-func",
"version": "0.0.7",
"description": "Helper package for Azure Functions by Vjeko.com",
"main": "dist/index.js",
"types": "dist/index.d.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"build": "tsc",
"watch": "tsc --watch",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vjekob/vjeko-azure-func.git"
},
"keywords": [
"Azure Functions",
"storage"
],
"author": "Vjeko.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/vjekob/vjeko-azure-func/issues"
},
"homepage": "https://github.com/vjekob/vjeko-azure-func#readme",
"devDependencies": {
"@jest/types": "^27.2.4",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@vjeko.com/azure-func-test": "0.0.3",
"jest": "^27.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@azure/functions": "^1.2.3",
"azure-storage": "^2.10.4"
}
}