forked from kuzzleio/kuzzle-plugin-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "kuzzle-plugin-s3",
"author": "The Kuzzle Team <[email protected]>",
"version": "2.0.4",
"description": "Kuzzle plugin to upload file on S3 using presigned URL",
"main": "lib/index.js",
"scripts": {
"test": "npm run --silent lint && npm run unit-testing",
"lint": "eslint --max-warnings=0 ./lib",
"unit-testing": "./node_modules/.bin/mocha test/",
"doc-prepare": "kuzdoc framework:install",
"doc-dev": "kuzdoc repo:dev -d /official-plugins/s3/2/ -v 2",
"doc-build": "kuzdoc repo:build -d /official-plugins/s3/2/ -v 2",
"doc-upload": "kuzdoc repo:deploy -d /official-plugins/s3/2/ -v 2",
"doc-cloudfront": "kuzdoc repo:cloudfront -d /official-plugins/s3/2/",
"doc-deploy": "npm run doc-upload && npm run doc-cloudfront",
"doc-netlify": "npm run doc-prepare && kuzdoc repo:build -d / -v 2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-plugin-s3.git"
},
"keywords": [
"kuzzle",
"plugin",
"s3",
"aws",
"upload"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kuzzleio/kuzzle-plugin-s3/issues"
},
"homepage": "https://github.com/kuzzleio/kuzzle-plugin-s3#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"kuzdoc": "^2.5.4",
"kuzzle-common-objects": "^5.0.2",
"mocha": "^5.2.0",
"mock-require": "^3.0.3",
"rewire": "^6.0.0",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.2.3"
},
"dependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"aws-sdk": "^2.1427.0",
"ms": "^2.1.3",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"semver": "^7.5.4",
"uuid": "^9.0.0"
}
}