forked from Azure/Azurite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.52 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
{
"name": "azurite",
"version": "3.0.0-preview",
"description": "An open source Azure Storage API compatible server.",
"bin": {
"azurite": "./dist/src/blob/main.js",
"azurite-blob": "./dist/src/blob/main.js"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@azure/ms-rest-js": "^1.5.0",
"args": "^5.0.1",
"etag": "^1.8.1",
"express": "^4.16.4",
"lokijs": "^1.5.6",
"morgan": "^1.9.1",
"multistream": "^2.1.1",
"tslib": "^1.9.3",
"uri-templates": "^0.2.0",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@azure/storage-blob": "^10.3.0",
"@types/args": "^3.0.0",
"@types/etag": "^1.8.0",
"@types/express": "^4.16.0",
"@types/lokijs": "^1.5.2",
"@types/mocha": "^5.2.6",
"@types/morgan": "^1.7.35",
"@types/multistream": "^2.1.1",
"@types/node": "^11.13.0",
"@types/rimraf": "^2.0.2",
"@types/uri-templates": "^0.1.29",
"@types/uuid": "^3.4.4",
"@types/xml2js": "^0.4.3",
"autorest": "^2.0.4283",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.1.4"
},
"scripts": {
"build": "tsc",
"build:autorest": "autorest ./swagger/blob.md --typescript --use=E:/GitHub/XiaoningLiu/autorest.typescript.server",
"build:autorestdebug": "autorest ./swagger/blob.md --typescript --typescript.debugger --use=E:/GitHub/XiaoningLiu/autorest.typescript.server",
"blob": "node -r ts-node/register src/blob/main.ts",
"lint": "tslint -p tsconfig.json -c tslint.json src/**/*.ts",
"test": "mocha --compilers ts-node/register --no-timeouts --recursive tests/**/*.test.ts tests/**/**/*.test.ts",
"clean": "rimraf dist typings *.log coverage __testspersistence__ temp __testsstorage__ .nyc_output debug.log",
"clean:deep": "rimraf dist typings *.log coverage __testspersistence__ temp __testsstorage__ .nyc_output debug.log __blobstorage__ __azurite_db_blob__.json debug.log"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/azure/azurite.git"
},
"keywords": [
"Azurite",
"Azure",
"Storage",
"Blob",
"Queue",
"Emulator",
"Microsoft"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/azure/azurite/issues"
},
"homepage": "https://github.com/azure/azurite#readme"
}