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 16
/
package.json
100 lines (100 loc) · 3.14 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@azure/amqp-common",
"version": "1.0.0-preview.3",
"description": "Common library for amqp based azure sdks like @azure/event-hubs.",
"author": "Microsoft Corporation",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist-esm/lib/index.js",
"types": "./typings/lib/index.d.ts",
"dependencies": {
"@azure/ms-rest-nodeauth": "^0.9.1",
"@types/is-buffer": "^2.0.0",
"async-lock": "^1.1.3",
"buffer": "^5.2.1",
"debug": "^3.1.0",
"events": "^3.0.0",
"is-buffer": "^2.0.3",
"jssha": "^2.3.1",
"process": "^0.11.10",
"stream-browserify": "^2.0.2",
"tslib": "^1.9.3",
"url": "^0.11.0",
"util": "^0.11.1"
},
"browser": {
"./dist/index.js": "./browser/index.js",
"./dist-esm/lib/index.node.js": "./dist-esm/lib/index.browser.js",
"buffer": "buffer",
"stream": "stream-browserify"
},
"peerDependencies": {
"rhea-promise": "^0.1.15"
},
"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/jssha": "^2.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.37",
"@types/sinon": "^5.0.5",
"assert": "^1.4.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.2.0",
"dotenv": "^6.1.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^14.0.0",
"rhea-promise": "^0.1.15",
"rimraf": "^2.6.2",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-inject": "^2.2.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^7.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.15.0",
"typescript": "^3.3.3",
"ws": "^6.2.0"
},
"files": [
"browser/",
"dist/",
"dist-esm/lib/",
"lib/",
"typings/lib/"
],
"scripts": {
"tslint": "tslint -p . -c tslint.json --exclude examples/**/*.ts --exclude tests/**/*.ts",
"tsc": "tsc",
"prebuild": "rimraf dist typings dist-esm test-browser test-dist",
"build": "npm run tslint && npm run tsc && cross-env rollup -c",
"build:browser-test": "npm run tslint && npm run tsc && rollup -c rollup.test.config.js",
"test": "npm run build && npm run unit",
"unit": "cross-env TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS=\"{\\\"module\\\":\\\"commonjs\\\"}\" nyc --reporter=lcov --reporter=text-lcov mocha -r ts-node/register -t 50000 ./tests/**/*.spec.ts",
"test:browser": "npm run build:browser-test && karma start",
"prepack": "npm i && npm run build"
},
"homepage": "https://github.com/Azure/amqp-common-js",
"repository": {
"type": "git",
"url": "https://github.com/azure/amqp-common-js.git"
},
"bugs": {
"url": "http://github.com/Azure/amqp-common-js/issues"
}
}