forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 5.4 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@azure/cosmos",
"version": "3.3.6",
"description": "Microsoft Azure Cosmos DB Service Node.js SDK for SQL API",
"sdk-type": "client",
"keywords": [
"cosmosdb",
"cosmos db",
"documentdb",
"document database",
"azure",
"nosql",
"database",
"cloud",
"Azure"
],
"author": "Microsoft Corporation",
"main": "./dist/index.js",
"module": "./dist-esm/index.js",
"browser": {
"./dist-esm/request/defaultAgent.js": "./dist-esm/request/defaultAgent.browser.js",
"./dist-esm/utils/atob.js": "./dist-esm/utils/atob.browser.js",
"./dist-esm/utils/digest.js": "./dist-esm/utils/digest.browser.js",
"./dist-esm/utils/hmac.js": "./dist-esm/utils/hmac.browser.js"
},
"files": [
"changelog.md",
"dist/",
"dist-esm/",
"LICENSE",
"src/",
"tsconfig.json"
],
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/cosmosdb/cosmos#readme",
"sideEffects": false,
"types": "./dist/index.d.ts",
"engine": {
"node": ">=8.0.0"
},
"scripts": {
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
"build:samples": "tsc -b samples",
"build:src": "echo Using TypeScript && tsc --version && tsc -b --pretty",
"build:test": "tsc -b src test --verbose",
"build": "npm run clean && tslint --project ./src/tsconfig.json && npm run extract-api && node writeSDKVersion.js && npm run bundle",
"bundle": "rollup -c",
"bundle-types": "node bundle-types.js",
"check-format": "prettier --list-different --config ../../.prettierrc.json \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf dist dist-esm temp types *.tgz *.html *.log *.tsbuildinfo test/**/*.{js,js.map,d.ts}",
"docs": "typedoc --tsconfig ./src/tsconfig.json --excludePrivate --mode file --out ./dist/docs ./src",
"execute:samples": "cd samples && npm run all-samples",
"extract-api": "npm run build:src && api-extractor run --local",
"format": "prettier --write --config ../../.prettierrc.json \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"integration-test:browser": "echo skipped",
"integration-test:node": "mocha -r esm -r dotenv/config -r ./test/common/setup.js \"./test/**/*.spec.js\" --timeout 100000 --reporter mocha-multi --reporter-options spec=-,mocha-junit-reporter=-",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint package.json tsconfig.json src test samples --ext .ts --fix",
"lint": "eslint package.json tsconfig.json src test samples --ext .ts -f html -o cosmos-lintReport.html || exit 0",
"pack": "npm pack 2>&1",
"prebuild": "npm run clean",
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
"test-browser": "karma start ./karma.config.js --single-run",
"test-consumer": "node consumer-test.js 2>&1",
"test": "npm run build:test && npm run unit-test && npm run integration-test",
"unit-test:browser": "echo skipped",
"unit-test:node": "echo skipped",
"unit-test": "npm run unit-test:node && npm run unit-test:browser"
},
"repository": "github:Azure/azure-sdk-for-js",
"license": "MIT",
"tsdoc": {
"tsdocFlavor": "AEDoc"
},
"dependencies": {
"@types/debug": "^4.1.4",
"debug": "^4.1.1",
"fast-json-stable-stringify": "^2.0.0",
"node-abort-controller": "^1.0.4",
"node-fetch": "^2.6.0",
"priorityqueuejs": "^1.0.0",
"semaphore": "^1.0.5",
"tslib": "^1.9.3",
"universal-user-agent": "^4.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@azure/eslint-plugin-azure-sdk": "^2.0.1",
"@microsoft/api-extractor": "^7.1.5",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.0",
"@types/node-fetch": "^2.5.0",
"@types/priorityqueuejs": "^1.0.1",
"@types/semaphore": "^1.1.0",
"@types/sinon": "^7.0.13",
"@types/tunnel": "^0.0.1",
"@types/underscore": "^1.8.8",
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin-tslint": "~2.3.0",
"@typescript-eslint/parser": "^2.0.0",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"esm": "^3.2.18",
"execa": "^1.0.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^3.0.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.6",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.1.3",
"prettier": "^1.16.4",
"proxy-agent": "3.0.3",
"requirejs": "^2.3.5",
"rimraf": "^3.0.0",
"rollup": "^1.16.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-multi-entry": "^2.1.0",
"sinon": "^7.1.0",
"source-map-support": "^0.5.9",
"ts-node": "^8.3.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.14.0",
"typedoc": "^0.15.0",
"typescript": "^3.2.2"
}
}