-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "cloudinary",
"author": "The Kuzzle Team <support@kuzzle.io>",
"version": "2.0.0",
"description": "Kuzzle plugin that allows assets management for Cloudinary service",
"main": "lib/CloudinaryPlugin.js",
"scripts": {
"test": "npm run --silent lint && npm run --silent unit-testing",
"lint": "./node_modules/.bin/eslint --max-warnings=0 ./lib ./test",
"unit-testing": "nyc --reporter=text-summary --reporter=lcov mocha",
"codecov": "codecov",
"doc-prepare": "cd doc && bash doc.sh prepare",
"doc-dev": "cd doc && bash doc.sh dev",
"doc-build": "cd doc && bash doc.sh build",
"doc-upload": "cd doc && bash doc.sh upload",
"doc-cloudfront": "cd doc && bash doc.sh cloudfront",
"doc-deploy": "npm run doc-upload && npm run doc-cloudfront",
"doc-netlify": "npm run doc-prepare && cd doc && bash doc.sh build-netlify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-plugin-cloudinary.git"
},
"keywords": [
"kuzzle",
"plugin",
"cloudinary",
"assets management"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kuzzleio/kuzzle-plugin-cloudinary/issues"
},
"homepage": "https://github.com/kuzzleio/kuzzle-plugin-cloudinary#readme",
"devDependencies": {
"codecov": "^3.2.0",
"cucumber": "^5.0.1",
"eslint": "^5.6.0",
"kuzdoc": "^1.4.5",
"kuzzle-common-objects": "^3.0.13",
"mocha": "^5.2.0",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.2.3"
},
"dependencies": {
"cloudinary": "^1.14.0",
"semver": "^6.0.0"
},
"maintainers": [
{
"name": "kuzzle",
"email": "support@kuzzle.io"
}
]
}