-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "@parse/s3-files-adapter",
"version": "4.1.0",
"description": "AWS S3 adapter for parse-server",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/parse-community/parse-server-s3-adapter.git"
},
"keywords": [
"parse-server",
"AWS",
"S3"
],
"author": "Parse",
"license": "ISC",
"bugs": {
"url": "https://github.com/parse-community/parse-server-s3-adapter/issues"
},
"homepage": "https://github.com/parse-community/parse-server-s3-adapter#readme",
"dependencies": {
"@aws-sdk/client-s3": "3.717.0",
"@aws-sdk/s3-request-presigner": "3.668.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.2",
"config": "3.3.2",
"cross-env": "7.0.3",
"eslint": "7.13.0",
"express": "4.21.1",
"jasmine": "3.5.0",
"jasmine-spec-reporter": "7.0.0",
"mongodb-runner": "5.6.4",
"nyc": "17.1.0",
"parse": "3.3.1",
"parse-server": "7.3.0",
"rewire": "7.0.0",
"semantic-release": "24.2.0",
"semver": "7.6.3"
},
"scripts": {
"lint": "eslint --cache ./",
"lint:fix": "eslint --fix --cache ./",
"pretest": "npm run test:mongodb:runnerstart",
"posttest": "npm run test:mongodb:runnerstop",
"test": "npm run test:only",
"test:only": "TESTING=1 nyc jasmine",
"test:mongodb:runnerstart": "mongodb-runner start -t standalone -- --port 27017",
"test:mongodb:runnerstop": "mongodb-runner stop --all"
},
"engines": {
"node": ">=18.20.5 <19.0.0 || >=20.18.1 <21.0.0 || >=22.12.0 <23.0.0"
}
}