forked from Azure/azure-storage-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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-storage",
"author": "Microsoft Corporation",
"version": "2.10.2",
"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",
"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.8.3",
"uuid": "^3.0.0",
"validator": "~9.4.1",
"xml2js": "0.2.8",
"xmlbuilder": "^9.0.7"
},
"devDependencies": {
"batchflow": "0.4.0",
"browserify": "^16.1.1",
"coveralls": "^2.11.4",
"factor-bundle": "^2.5.0",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.11.0",
"grunt-devserver": "^0.6.0",
"grunt-jsdoc": "~2.1.0",
"grunt-mocha": "^0.4.12",
"grunt-mocha-test": "^0.12.7",
"grunt-nsp": "^2.3.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.3.22",
"jshint": ">= 2.1.4",
"karma": "^2.0.0",
"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": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": ">= 1.18.0",
"mocha-lcov-reporter": "^1.0.0",
"nock": "0.16",
"nsp": "^2.2.0",
"should": "1.2.x",
"uglify-js": "~3.3.9",
"watchify": "^3.11.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 && nsp check",
"test": "jshint lib && nsp check && 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"
}
}