-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.62 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
{
"name": "lambda-tdd",
"type": "module",
"version": "0.0.0-development",
"description": "Test Framework for AWS Lambda",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "cp -rf ./src ./lib",
"build-clean": "yarn run clean && yarn run build",
"test-simple": "c8 mocha --import=./test/reg.js \"./test/**/*.spec.js\"",
"test": "yarn run clean && yarn run gardener && yarn run test-simple",
"semantic-release": "yarn run build-clean && npx semantic-release",
"gardener": "node gardener.js",
"docker": "docker run --net host -u`id -u`:`id -g` -v $(pwd):/user/project -v ~/.aws:/user/.aws -v ~/.npmrc:/user/.npmrc -w /user/project -it --entrypoint /bin/bash",
"t": "yarn test",
"ts": "yarn run test-simple",
"tsv": "yarn run test-simple --verbose",
"u": "yarn upgrade --latest --force",
"i": "yarn install --frozen-lockfile",
"it": "yarn run i && yarn run t"
},
"repository": {
"type": "git",
"url": "https://github.com/blackflux/lambda-tdd.git"
},
"keywords": [
"lambda",
"serverless",
"api gateway",
"aws",
"api",
"sls",
"istanbul",
"mocha",
"tdd",
"microservice"
],
"author": "Lukas Siemon",
"license": "MIT",
"bugs": {
"url": "https://github.com/blackflux/lambda-tdd/issues"
},
"homepage": "https://github.com/blackflux/lambda-tdd#readme",
"dependencies": {
"chai-string": "1.5.0",
"glob": "10.3.10",
"joi-strict": "3.0.1",
"js-yaml": "4.1.0",
"lambda-wrapper": "0.3.0",
"lodash.clonedeepwith": "4.5.0",
"lodash.get": "4.4.2",
"node-tdd": "5.2.5",
"object-scan": "19.0.5",
"smart-fs": "4.0.1"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blackflux/lambda-tdd/blob/master/LICENSE"
}
],
"devDependencies": {
"@babel/core": "7.24.0",
"@babel/eslint-parser": "7.23.10",
"@babel/register": "7.23.7",
"@blackflux/eslint-plugin-rules": "3.0.1",
"@blackflux/robo-config-plugin": "9.3.2",
"axios": "1.6.7",
"c8": "9.1.0",
"chai": "5.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-mocha": "10.3.0",
"js-gardener": "5.0.4",
"minimist": "1.2.8",
"nock": "13.5.4",
"tmp": "0.2.3"
},
"engines": {
"node": ">= 18"
},
"files": [
"lib"
],
"resolutions": {
"strip-ansi": "^6.0.0",
"string-width": "^4.0.0",
"wrap-ansi": "^v7.0.0"
},
"peerDependencies": {
"chai": ">= 5.0.0",
"nock": ">= 13.2.4"
}
}