-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.02 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "serverless-cloudformation-resource-counter",
"version": "1.1.1",
"description": "A Serverless plugin to count created resources after deployment.",
"keywords": [
"aws",
"cloudformation",
"serverless",
"plugin"
],
"main": "dist/index.js",
"files": [
"*.js",
"*.json",
"dist/*.js"
],
"scripts": {
"test": "node_modules/.bin/jest --coverage",
"report:coverage": "npm run test && codecov",
"prettier": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
"tslint:check": "tslint-config-prettier-check ./tslint.json",
"build": "tsc --project .",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,md}": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/drexler/serverless-cloudformation-resource-counter.git"
},
"author": "Andrew Quartey",
"license": "MIT",
"bugs": {
"url": "https://github.com/drexler/serverless-cloudformation-resource-counter/issues"
},
"homepage": "https://github.com/drexler/serverless-cloudformation-resource-counter#readme",
"dependencies": {
"aws-sdk": "^2.505.0",
"chalk": "^2.4.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^8.1.0",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.6",
"@types/jest": "^24.0.16",
"@types/node": "^9.3.0",
"@types/sinon": "^7.0.13",
"aws-sdk-mock": "^4.5.0",
"codecov": "^3.1.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"semantic-release": "^15.13.19",
"sinon": "^7.3.2",
"ts-jest": "^24.0.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts?|js?)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}