forked from kevinrambaud/serverless-functions-base-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.58 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
71
72
{
"name": "serverless-functions-base-path",
"version": "1.0.32",
"description": "Easily define a base path where your serverless functions are located",
"main": "index.js",
"directories": {
"example": "example",
"lib": "lib"
},
"files": [
"index.js",
"lib/base-path-plugin.js"
],
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"pretest": "eslint --fix \"lib/**/*.js\"",
"test": "nyc mocha \"lib/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinrambaud/serverless-functions-base-path.git"
},
"keywords": [
"serverless",
"lambda",
"aws",
"function",
"plugin",
"base",
"path",
"src"
],
"author": "Kevin Rambaud <[email protected]> (https://twitter.com/kevinrambaud)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinrambaud/serverless-functions-base-path/issues"
},
"homepage": "https://github.com/kevinrambaud/serverless-functions-base-path#readme",
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-kevinrambaud": "^1.0.1",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0"
},
"eslintConfig": {
"extends": "kevinrambaud"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/**/*.test.js"
],
"all": true
}
}