-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "esbuild-azure-functions",
"version": "2.0.1",
"description": "A blazingly fast builder for Azure Functions powered by esbuild.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"esbuild-azure-functions": "build/src/cli.js"
},
"files": [
"build",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beyerleinf/esbuild-azure-functions.git"
},
"keywords": [
"esbuild",
"azure",
"functions"
],
"author": {
"email": "[email protected]",
"name": "Fabian Beyerlein"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/beyerleinf/esbuild-azure-functions/issues"
},
"homepage": "https://github.com/beyerleinf/esbuild-azure-functions#readme",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint .",
"build": "tsc",
"test": "c8 mocha"
},
"dependencies": {
"colorette": "^2.0.19",
"commander": "^10.0.0",
"esbuild": "0.17.5",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"rimraf": "^4.1.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.11.18",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"c8": "^7.12.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"eslint": "^8.33.0",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"mock-fs": "^5.1.2",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.5.0",
"typescript": "^4.9.4"
}
}