-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 766 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 766 Bytes
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
{
"name": "power-automate-extensions",
"version": "1.1.1",
"description": "",
"scripts": {
"prebuild": "npm run clean && npm test",
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@azure/functions": "^4.0.0",
"adm-zip": "^0.5.16",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.x",
"jest": "^29.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.2.6",
"typescript": "^4.0.0"
},
"main": "dist/src/{index.js,functions/*.js}"
}