forked from Azure/azure-storage-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "azure-storage",
"author": "Microsoft Corporation",
"version": "0.10.0",
"description": "Microsoft Azure Storage Client Library for Node.js",
"tags": [
"azure",
"storage",
"sdk"
],
"keywords": [
"node",
"azure",
"storage"
],
"main": "./lib/azure-storage.js",
"engines": {
"node": ">= 0.8.26"
},
"license": "Apache-2.0",
"dependencies": {
"extend": "~1.2.1",
"browserify-mime": "~1.2.9",
"node-uuid": "~1.4.0",
"readable-stream": "~2.0.0",
"request": "~2.69.0",
"underscore": "~1.4.4",
"validator": "~3.22.2",
"xml2js": "0.2.7",
"xmlbuilder": "0.4.3"
},
"devDependencies": {
"browserify-fs": "^1.0.0",
"coveralls": "^2.11.4",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.11.0",
"grunt-devserver": "^0.6.0",
"grunt-jsdoc": "~0.5.1",
"grunt-mocha": "^0.4.12",
"grunt-mocha-test": "^0.12.7",
"grunt-nsp-package": "0.0.5",
"istanbul": "^0.3.22",
"jshint": ">= 2.1.4",
"mocha": ">= 1.18.0",
"mocha-lcov-reporter": "^1.0.0",
"nock": "0.16",
"nsp": "^2.2.0",
"should": "1.2.x"
},
"browser": {
"fs": "browserify-fs"
},
"homepage": "http://github.com/Azure/azure-storage-node",
"repository": {
"type": "git",
"url": "[email protected]: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",
"testwithoutcheck": "jshint lib && 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"
}
}