-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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": "@neurocode.io/azure-sas-token",
"version": "1.3.0",
"description": "Cloudflare worker app to issue limited access to Azure Storage resources using shared access signatures (SAS)",
"keywords": [
"azure-sas-token",
"cloudflare-azure-sas",
"cloudflare-workers"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"tsconfig.json",
"README.md",
"package.json"
],
"module": "dist/index.js",
"source": "src/index.ts",
"repository": "https://github.com/neurocode-io/azure-sas-token",
"author": "neurocode I/O GmbH <[email protected]>",
"homepage": "https://github.com/neurocode-io/azure-sas-token/tree/master/README.md",
"license": "MIT",
"scripts": {
"test": "echo hello",
"build": "tsc --build",
"clean": "tsc --build --clean",
"format": "prettier --write '**/*.{ts,js,css,json,md}'"
},
"dependencies": {},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"prettier": "^2.8.3",
"typescript": "^5.0.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"np": {
"contents": "dist"
}
}