forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.64 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
{
"name": "@azure/cosmos",
"sdk-type": "client",
"description": "Azure Cosmos DB Service Node.js SDK for SQL API",
"keywords": [
"cosmosdb",
"cosmos db",
"documentdb",
"document database",
"azure",
"nosql",
"database",
"cloud"
],
"version": "2.1.5",
"author": "Microsoft Corporation",
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"engine": {
"node": ">=6.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:dev": "npm run check-format && npm run lint && npm run build:test",
"build:test": "npm run compile:dev && npm run webpack:dev",
"build": "npm run compile && npm run webpack",
"check-format": "prettier --list-different --config ../../.prettierrc.json \"src/**/*.ts\" \"ts-test/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf lib",
"compile:dev": "echo Using TypeScript && tsc --version && tsc --pretty",
"compile": "echo Using TypeScript && tsc --version && tsc -p tsconfig.prod.json --pretty",
"format": "prettier --write --config ../../.prettierrc.json \"src/**/*.ts\" \"ts-test/**/*.ts\" \"*.{js,json}\"",
"integration-test:browser": "echo skipped",
"integration-test:node": "mocha -r ./src/test/common/setup.ts ./lib/src/test/ --recursive --timeout 100000 --reporter mocha-multi --reporter-options spec=-,mocha-junit-reporter=- -i -g .*ignore.js",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint \"src/**/*.ts\" \"ts-test/**/*.ts\" -c ../../.eslintrc.json --fix --fix-type [problem,suggestion]",
"lint": "eslint -c ../../.eslintrc.json src ts-test --ext .ts -f node_modules/eslint-detailed-reporter/lib/detailed.js -o cosmos-lintReport.html || exit 0",
"pack": "npm pack 2>&1",
"prebuild": "npm run clean",
"smoke-test": "node ts-test.js",
"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": "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",
"webpack:dev": "webpack -d",
"webpack": "webpack -p"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.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",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-detailed-reporter": "^0.8.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"execa": "1.0.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.0.1",
"prettier": "^1.16.4",
"requirejs": "^2.3.5",
"rimraf": "^2.6.2",
"sinon": "^7.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.2.2",
"webpack": "^4.16.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"binary-search-bounds": "2.0.3",
"create-hmac": "^1.1.7",
"priorityqueuejs": "1.0.0",
"semaphore": "1.0.5",
"stream-http": "^2.8.3",
"tslib": "^1.9.3",
"tunnel": "^0.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-cosmos-js"
},
"license": "MIT"
}