-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "serverless-remove-default-form-requesttemplate-plugin",
"version": "1.0.1",
"keywords": [
"aws",
"serverless",
"plugin"
],
"description": "Serverless Plugin to remove the default application/x-www-form-urlencoded request templates from AWS API Methods. ",
"main": "dist/index.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"
},
"author": "René Calles",
"license": "MIT",
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts?)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/",
"/dist/"
],
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^8.0.0",
"@semantic-release/github": "^6.0.1",
"@semantic-release/npm": "^6.0.0",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@types/serverless": "^1.18.4",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"semantic-release": "^16.0.2",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
}
}