This repository was archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
89 lines (89 loc) · 2.72 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@azure/event-processor-host",
"version": "1.0.6",
"description": "Azure Event Processor Host (Event Hubs) SDK for JS.",
"author": "Microsoft Corporation",
"license": "MIT",
"keywords": [
"azure",
"cloud",
"event hubs",
"event processor",
"events"
],
"main": "./dist/lib/index.js",
"module": "dist-esm/lib/index.js",
"types": "./typings/lib/index.d.ts",
"dependencies": {
"@azure/event-hubs": "^1.0.6",
"azure-storage": "^2.10.1",
"async-lock": "^1.1.3",
"debug": "^3.1.0",
"ms-rest-azure": "^2.5.9",
"path-browserify": "^1.0.0",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@microsoft/api-extractor": "^6.3.0",
"@types/async-lock": "^1.1.0",
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^0.0.30",
"@types/dotenv": "^4.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.37",
"@types/uuid": "^3.4.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"dotenv": "^5.0.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"files": [
"LICENSE",
"changelog.md",
"overview.md",
"README.md",
"dist/",
"dist-esm/lib/",
"lib/",
"typings/"
],
"scripts": {
"tslint": "tslint -p . -c tslint.json",
"tsc": "tsc",
"prebuild": "rimraf dist && rimraf dist-esm && rimraf test-dist && rimraf typings",
"build": "npm run tslint && tsc -p . && rollup -c",
"build-browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c",
"build-node": "tsc -p . && cross-env ONLY_NODE=true rollup -c",
"build-test": "tsc -p . && cross-env ONLY_NODE=true rollup -c rollup.test.config.js",
"build-samples": "cd examples && tsc -p .",
"test": "npm run build",
"unit": "npm run build-test && mocha -t 75000 test-dist/index.js --exit",
"coverage": "npm run build-test && nyc --reporter=lcov mocha -t 85000 test-dist/index.js --exit",
"prepack": "npm i && npm run build",
"extract-api": "tsc -p . && api-extractor run --local"
},
"homepage": "https://github.com/Azure/azure-event-hubs-node/tree/master/processor",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-event-hubs-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-event-hubs-node/issues"
}
}