-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 872 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
35
36
{
"name": "serverless-cors-plugin",
"version": "0.4.2",
"description": "Serverless CORS Plugin - Managing Cross-origin resource sharing (CORS) policies",
"main": "src/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:joostfarla/serverless-cors-plugin.git"
},
"keywords": [
"serverless",
"aws",
"lambda",
"cors"
],
"author": "Joost Farla <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joostfarla/serverless-cors-plugin/issues"
},
"homepage": "https://github.com/joostfarla/serverless-cors-plugin#readme",
"dependencies": {
"bluebird": "^3.1.1",
"joi": "^8.0.1",
"lodash": "^4.3.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.4.5",
"serverless": "^0.5.0"
}
}