This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
82 lines (82 loc) · 2.32 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
{
"name": "@azure/service-bus",
"author": "Microsoft Corporation",
"version": "0.1.0",
"license": "MIT",
"description": "Azure ServiceBus SDK for JS",
"homepage": "http://github.com/azure/azure-sdk-for-js",
"repository": "github:Azure/azure-sdk-for-js",
"keywords": [
"azure",
"cloud",
"service bus"
],
"bugs": {
"url": "https://github.com/azure/azure-sdk-for-js/issues"
},
"main": "./dist/index.js",
"module": "dist-esm/lib/index.js",
"types": "./typings/lib/index.d.ts",
"engine": {
"node": ">=6.0.0"
},
"dependencies": {
"@azure/amqp-common": "^1.0.0-preview.1",
"debug": "^3.1.0",
"is-buffer": "^2.0.3",
"long": "^4.0.0",
"ms-rest-azure": "^2.5.9",
"rhea-promise": "^0.1.13",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/async-lock": "^1.1.0",
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "^0.0.31",
"@types/dotenv": "^4.0.3",
"@types/long": "^4.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.37",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"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",
"Readme.md",
"dist/",
"dist-esm/lib/",
"lib/",
"typings/"
],
"scripts": {
"tslint": "tslint -p . -c tslint.json",
"tsc": "tsc",
"prebuild": "rimraf 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 50000 test-dist/index.js",
"prepack": "npm i && npm run build"
}
}