forked from rrahul963/serverless-add-api-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "serverless-add-api-key",
"version": "4.2.0",
"description": "serverless plugin to create a api key and usage pattern (if they don't already exist) and associates them to the Rest Api",
"main": "src/index.js",
"scripts": {
"test-unit": "mocha test/unittest",
"coverage": "nyc --reporter=html npm run test-unit",
"pre-push": "npm run test-unit",
"lint": "eslint .",
"pre-commit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rrahul963/serverless-add-api-key.git"
},
"keywords": [
"api",
"key",
"api",
"gateway",
"usage",
"pattern"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rrahul963/serverless-add-api-key/issues"
},
"homepage": "https://github.com/rrahul963/serverless-add-api-key#readme",
"dependencies": {
"aws-sdk": "^2.421.0",
"chalk": "^2.4.1"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.2.2",
"husky": "^3.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"should": "^13.2.3",
"sinon": "^7.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test-unit"
}
}
}