-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
73
{
"name": "serverless-function-version",
"version": "1.0.0",
"description": "Serverless plugin for obtaining the version of a Lambda function",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/digio/serverless-function-version.git"
},
"homepage": "https://github.com/digio/serverless-function-version#readme",
"bugs": {
"url": "https://github.com/digio/serverless-function-version/issues"
},
"keywords": [
"serverless",
"plugin",
"function",
"lambda",
"version"
],
"author": "DigIO",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint --max-warnings=0 --fix src/",
"verify": "eslint --max-warnings=0 src/",
"test": "npm-run-all test:report",
"test:unit": "jest",
"test:report": "jest --no-cache --coverage --json --outputFile=test-reports/unit/unit.json",
"test:reportlist": "jest --no-cache --coverage",
"test:snaps": "jest -u",
"test:watch": "jest --watchAll",
"upload-coverage": "coveralls < test-reports/coverage/lcov.info",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all verify test",
"commit-msg": "cz-customizable-ghooks"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/commitMessageConfig.js"
}
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"coveralls": "3.1.0",
"cz-customizable": "6.3.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-unicorn": "21.0.0",
"husky": "4.2.5",
"jest": "26.4.2",
"npm-run-all": "4.1.5",
"prettier": "2.1.1",
"semantic-release": "17.1.1"
},
"files": [
"src"
],
"engines": {
"node": ">=10",
"npm": ">=6.9"
}
}