-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "az-queue-consumer",
"version": "1.1.0",
"description": "Lightweight Azure Queue Consumer",
"type": "module",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/aarontravass/az-queue-consumer.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "parcel build",
"format:check": "prettier --check src/**",
"format:fix": "prettier --write src/**",
"lint:check": "eslint src/** --ext=ts",
"lint:fix": "eslint src/** --fix --ext=ts",
"prepare": "husky install",
"prepublish": "pnpm build",
"test:coverage": "vitest run --coverage",
"test:dev": "vitest",
"test": "pnpm test:coverage",
"typecheck": "vitest typecheck --run",
"watch": "parcel watch"
},
"keywords": [
"azure",
"consumer",
"queue",
"azure queue storage"
],
"author": "aarontravass",
"license": "MIT",
"dependencies": {
"@azure/storage-queue": "^12.14.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@parcel/packager-ts": "^2.10.0",
"@parcel/transformer-typescript-types": "^2.10.0",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"parcel": "^2.10.0",
"prettier": "^3.0.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vitest": "^0.33.0"
}
}