-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.08 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
64
65
66
67
68
69
70
{
"name": "feathers-cloudinary",
"description": "A Feathers service for Cloudinary",
"version": "0.1.0",
"homepage": "https://github.com/johnatspreadstreet/feathers-cloudinary",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "https",
"url": "https://github.com/johnatspreadstreet/feathers-cloudinary"
},
"author": {
"name": "John Young",
"email": "[email protected]",
"url": "https://jyoung.dev"
},
"contributors": [],
"bugs": {
"url": "https://github.com/johnatspreadstreet/feathers-cloudinary/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/errors": "^4.5.8",
"cloudinary": "^1.22.0"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"chai": "^3.5.0",
"eslint": "5.14.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "5.0.3",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.3.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.3",
"prettier": "1.16.4",
"semistandard": "^14.2.3"
}
}