-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 867 Bytes
/
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
{
"name": "@vjeko.com/azure-func-test",
"version": "0.0.3",
"description": "Testability helpers, mocks, stubs, and all for testing @vjeko.com/azure-func and dependent projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "tsc",
"build": "tsc"
},
"keywords": [
"jest",
"Azure Functions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vjekob/azure-func-test.git"
},
"bugs": {
"url": "https://github.com/vjekob/azure-func-test/issues"
},
"author": "Vjeko.com",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"typescript": "^4.4.3",
"ts-node": "^10.2.1",
"@jest/types": "^27.2.4",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@azure/functions": "^1.2.3",
"azure-storage": "^2.10.4"
}
}