-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 879 Bytes
/
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
{
"name": "unsplash-api-proxy",
"description": "Serves as a proxy on Google App Engine to communicate with Unsplash API server using your specified access key.",
"version": "1.0.2",
"author": "Alan Tai",
"repository": {
"type": "git",
"url": "git+https://github.com/ayltai/unsplash-api-proxy.git"
},
"bugs": {
"url": "https://github.com/ayltai/unsplash-api-proxy/issues"
},
"license": "Apache-2.0",
"keywords": [
"unsplash",
"api",
"proxy"
],
"scripts": {
"check": "./node_modules/.bin/eslint *.js",
"start": "node app.js"
},
"dependencies": {
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"http-proxy": "^1.18.1"
},
"devDependencies": {
"eslint": "^7.4.0"
},
"engines": {
"node": "~12"
}
}