-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "@parse/s3-files-adapter",
"version": "3.0.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": "2.1691.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "7.1.3",
"@semantic-release/release-notes-generator": "9.0.3",
"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",
"semantic-release": "17.4.6",
"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"
}
}