-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "feathers-unsplash",
"description": "FeathersJS service adapter for the Unsplash API",
"version": "0.0.1",
"homepage": "",
"main": "lib/index",
"files": [
"lib/**/*.*"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marshallswain/feathers-unsplash"
},
"keywords": [
"feathers",
"unsplash",
"unsplash-js"
],
"author": {
"name": "Marshall Thompson",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^12.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"publish": "git push origin --tags && 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",
"test": "yarn run eslint && yarn run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"unsplash-js": "^6.0.0"
},
"devDependencies": {
"@feathersjs/configuration": "^4.3.11",
"@feathersjs/errors": "^4.3.11",
"@feathersjs/express": "^4.3.11",
"@feathersjs/feathers": "^4.3.11",
"@feathersjs/socketio": "^4.3.11",
"@feathersjs/transport-commons": "^4.4.3",
"axios": "^0.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"eslint": "^6.6.0",
"helmet": "^3.21.2",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.0",
"serve-favicon": "^2.5.0",
"winston": "^3.0.0"
}
}