-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "azure-storage",
"author": "Microsoft Corporation",
"version": "2.10.7",
"description": "Microsoft Azure Storage Client Library for Node.js",
"typings": "typings/azure-storage/azure-storage.d.ts",
"tags": [
"azure",
"storage",
"sdk"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./lib/azure-storage.js",
"browserify": {
"./lib/common/signing/sharedkey.js": "./lib/common/signing/sharedkey.browser.js"
},
"engines": {
"node": ">= 0.8.26"
},
"license": "Apache-2.0",
"dependencies": {
"browserify-mime": "^1.2.9",
"extend": "^3.0.2",
"json-edm-parser": "~0.1.2",
"md5.js": "^1.3.4",
"readable-stream": "^2.0.0",
"request": "^2.86.0",
"underscore": "^1.12.1",
"uuid": "^3.0.0",
"validator": "^13.7.0",
"xml2js": "~0.2.8",
"xmlbuilder": "^9.0.7",
"json-schema": "~0.4.0"
},
"devDependencies": {
"batchflow": "0.4.0",
"browserify": "^16.1.1",
"coveralls": "^3.0.3",
"factor-bundle": "^2.5.0",
"grunt": "^1.0.4",
"grunt-jsdoc": "^2.3.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jshint": ">= 2.1.4",
"karma": "^6.3.9",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.0.0",
"nock": "0.16",
"should": "1.2.x",
"uglify-js": "~3.3.9",
"watchify": "^4.0.0"
},
"homepage": "http://github.com/Azure/azure-storage-node",
"repository": {
"type": "git",
"url": "git@github.com:Azure/azure-storage-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-storage-node/issues"
},
"scripts": {
"check": "jshint lib && npm set audit-level high && npm audit",
"test": "mocha --no-timeouts --recursive test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec -u bdd --no-timeouts --recursive test",
"coveralls": "npm run cover && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"genjs": "node ./browser/bundle.js",
"jstest": "npm run genjs && node ./browser/test/bundle.js && karma start --single-run"
}
}