forked from Azure/Azurite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 2.41 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
{
"name": "azurite",
"version": "2.7.0",
"description": "A lightweight server clone of Azure Blob, Queue, and Table Storage that simulates most of the commands supported by it with minimal dependencies.",
"scripts": {
"pretest": "npm run clean",
"test": "env-cmd ./test/.env mocha",
"externaltests": "env-cmd ./externaltests/.env mocha externaltests",
"start": "node bin/azurite -l azurite-testdrive",
"blob": "node bin/blob -l azurite-testdrive",
"queue": "node bin/queue",
"table": "node bin/table",
"clean": "rimraf azurite-testdrive *.nupkg blob.exe queue.exe table.exe",
"nuget": "cross-var \"npm run clean && pkg -t node6-win --output blob bin/blob && pkg -t node6-win --output queue bin/queue && pkg -t node6-win --output table bin/table && nuget pack -Version $npm_package_version && nuget push *.nupkg -Source https://www.nuget.org/api/v2/package\"",
"docker": "cross-var \"docker build -t arafato/azurite:$npm_package_version . && docker build -t arafato/azurite:latest . && docker push arafato/azurite:$npm_package_version && docker push arafato/azurite:latest\""
},
"engines": {
"node": ">=6.0"
},
"main": "./bin/azurite",
"bin": {
"azurite": "./bin/azurite",
"azurite-blob": "./bin/blob",
"azurite-queue": "./bin/queue",
"azurite-table": "./bin/table"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/arafato/azurite.git"
},
"keywords": [
"azure",
"storage",
"blob",
"queue",
"table",
"blobstore",
"emulator",
"microsoft"
],
"author": "Oliver Arafat",
"license": "MIT",
"bugs": {
"url": "https://github.com/arafato/azurite/issues"
},
"homepage": "https://github.com/arafato/azurite#readme",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"combined-stream": "^1.0.5",
"express": "^4.14.0",
"fs-extra": "^4.0.1",
"js2xmlparser": "^2.0.2",
"lokijs": "^1.4.1",
"minimist": "^1.2.0",
"morgan": "^1.7.0",
"request": "2.87.0",
"uuid": "^3.0.1",
"validator": "^8.0.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"azure-storage": "^2.10.1",
"chai": "^3.5.0",
"chai-http": "^4.0.0",
"cross-var": "^1.1.0",
"env-cmd": "^8.0.2",
"mocha": "5.2.0",
"pkg": "^4.3.1",
"prettier": "1.14.2",
"request-promise": "^4.1.1",
"rimraf": "2.6.2"
}
}