-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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
{
"name": "serverless-plugin-test-helper",
"description": "A utility library to help with testing deployed serverless applications",
"version": "2.6.5",
"scripts": {
"publish-please-dry-run": "publish-please --dry-run",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard && npm run build",
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"postbuild": "ncp src/index.d.ts dist/index.d.ts",
"test": "jest --coverage",
"pretest": "rimraf .test-output .serverless dist",
"posttest": "rimraf .test-output .serverless .test*",
"codecov": "codecov -f coverage/*.json",
"testexamples-custom-ts": "cd examples/custom-ts && rm -rf node_modules package-lock.json && npm i && npm run deploy-test-and-remove"
},
"dependencies": {
"deepmerge": "^4.2.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/aws-lambda": "^8.10.76",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-jest": "^27.0.1",
"codecov": "^3.8.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.1",
"lint-staged": "^11.0.0",
"lodash.clonedeep": "^4.5.0",
"ncp": "^2.0.0",
"prettier": "^2.3.0",
"publish-please": "^5.5.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"./src/**/*.ts": [
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manwaring/serverless-plugin-test-helper.git"
},
"bugs": {
"url": "https://github.com/manwaring/serverless-plugin-test-helper"
},
"homepage": "https://github.com/manwaring/serverless-plugin-test-helper#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "From Phillip with ♥",
"license": "MIT",
"keywords": [
"serverless",
"plugin",
"testing",
"library",
"helper"
]
}