-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "flydrive-azure",
"description": "Flydrive Azure Driver",
"version": "0.0.4",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"author": "necessarylion",
"repository": {
"type": "git",
"url": "https://github.com/necessarylion/flydrive-azure-driver"
},
"license": "MIT",
"keywords": [
"flydrive",
"azure",
"driver"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"flydrive": "^1.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@azure/identity": "^4.7.0",
"@azure/storage-blob": "^12.26.0"
}
}