-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "azure-storage-fs",
"version": "0.4.1-0",
"description": "A drop-in \"fs\" replacement for accessing Azure Storage with Node.js \"fs\" API",
"repository": {
"type": "git",
"url": "https://github.com/compulim/azure-storage-fs.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "babel --out-dir lib src/. --ignore **/*.spec.js,**/*.test.js,__tests__/**/*",
"clean": "npx rimraf lib",
"versionCommit": "npx gulp-cli version-commit",
"test": "jest"
},
"keywords": [
"azure",
"blob",
"cloud",
"fs",
"microsoft",
"saas",
"smb",
"storage",
"windows"
],
"devDependencies": {
"azure-storage": "^2.6.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"dotenv": "^4.0.0",
"jest": "^21.2.1",
"node-fetch": "^1.6.3",
"promise-retry": "^1.1.1"
},
"optionalDependencies": {
"debug": "^2.6.3"
},
"peerDependencies": {
"azure-storage": "^2.6.0"
}
}