-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
47 lines (47 loc) · 1.5 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
{
"name": "uploadfs",
"version": "1.24.2",
"description": "Store files in a web-accessible location via a simplified API. Can automatically scale and rotate images. Includes S3, Azure and local filesystem-based backends with the most convenient features of each.",
"main": "uploadfs.js",
"scripts": {
"test": "npm run testAzure && GOOGLE_APPLICATION_CREDENTIALS=gcs-credentials-uploadfstest.json mocha test/ && node test-imagemagick.js && eslint .",
"testAzure": "env AZURE_TEST_FILE='test.jpg' mocha test/azure.js",
"webp": "./webp-test.js",
"lint-be": "eslint --fix 'lib/**/*.js'",
"test-sharp": "npm run testAzure && GOOGLE_APPLICATION_CREDENTIALS=gcs-credentials-uploadfstest.json mocha test/ && node test-sharp.js && eslint ."
},
"repository": {
"type": "git",
"url": "[email protected]:apostrophecms/uploadfs.git"
},
"keywords": [
"upload",
"files",
"s3",
"storage"
],
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"dependencies": {
"async": "^1.0.0",
"bluebird": "^3.7.2",
"es6-promise": "^4.1.0",
"fs-extra": "^5.0.0",
"gzipme": "^0.1.1",
"lodash": "^4.17.21",
"rimraf": "^5.0.7"
},
"optionalDependencies": {
"@azure/storage-blob": "^12.14.0",
"@google-cloud/storage": "^6.11.0",
"aws-sdk": "^2.645.0",
"sharp": "^0.32.6"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-apostrophe": "^4.0.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.9",
"stat-mode": "^0.2.2"
}
}