forked from architect/functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.45 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
{
"name": "@architect/functions",
"version": "5.3.3",
"description": "Cloud function signatures for HTTP handlers, pub/sub + scheduled, queued functions, table triggers, and more",
"homepage": "https://github.com/architect/functions",
"repository": {
"type": "git",
"url": "https://github.com/architect/functions"
},
"bugs": "https://github.com/architect/functions/issues",
"main": "src/index",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint --fix .",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"test": "npm run lint && npm run test:integration && npm run coverage",
"test:types": "tsd --files types/*.test-d.ts",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=12"
},
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"cookie": "^0.5.0",
"cookie-signature": "^1.2.0",
"csrf": "^3.1.0",
"node-webtokens": "^1.0.4",
"run-parallel": "^1.2.0",
"run-waterfall": "^1.1.7",
"uid-safe": "^2.1.5"
},
"devDependencies": {
"@architect/asap": "^5.1.0",
"@architect/eslint-config": "2.0.1",
"@architect/req-res-fixtures": "git+https://github.com/architect/req-res-fixtures.git",
"@architect/sandbox": "^5.4.1",
"@aws-sdk/client-apigatewaymanagementapi": "^3.213.0",
"@aws-sdk/client-dynamodb": "^3.213.0",
"@aws-sdk/client-sns": "^3.213.0",
"@aws-sdk/client-sqs": "^3.213.0",
"@aws-sdk/client-ssm": "^3.213.0",
"@aws-sdk/lib-dynamodb": "^3.214.0",
"@types/aws-lambda": "^8.10.109",
"@types/node": "^18.11.13",
"aws-sdk": "2.1055.0",
"cross-env": "~7.0.3",
"eslint": "^8.29.0",
"mock-fs": "~5.2.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"sinon": "~15.0.0",
"tap-spec": "~5.0.0",
"tape": "~5.6.1",
"tiny-json-http": "~7.4.2",
"tsd": "^0.25.0"
},
"files": [
"types/*",
"src/*"
],
"keywords": [
"aws",
"lambda",
"amazon",
"serverless",
"cloud",
"cloudfunctions",
"apigateway",
"dynamodb",
"s3",
"sns",
"api gateway",
"framework"
],
"eslintConfig": {
"extends": "@architect/eslint-config",
"rules": {
"global-require": "off"
}
},
"tsd": {
"compilerOptions": {
"strict": false
}
}
}