-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "@kolach/loopback-component-cloudinary",
"version": "0.0.3",
"description": "Cloudinary connector for loopback",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "./node_modules/.bin/mocha --timeout 30000 test/unit/**/*test.js test/integration/**/*test.js",
"test:debug": "npm run test -- --debug-brk"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kolach/loopback-component-cloudinary.git"
},
"keywords": [
"loopback",
"cloudinary",
"connector"
],
"author": "Nick Chistyakov (aka kolach)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolach/loopback-component-cloudinary/issues"
},
"homepage": "https://github.com/kolach/loopback-component-cloudinary#readme",
"dependencies": {
"cloudinary": "^1.3.0",
"formidable": "^1.0.17"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.1.0",
"eslint-config-defaults": "^9.0.0",
"lodash": "^4.5.0",
"loopback": "^2.26.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"uuid": "^2.0.1"
}
}