-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
87 lines (87 loc) · 2.5 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
{
"name": "@architect/functions",
"version": "8.1.6",
"description": "Runtime utility library for Functional Web Apps (FWAs) built with Architect (https://arc.codes)",
"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": "npm run lint && npm run test:integration && npm run coverage && npm run test:types",
"test:nolint": "npm run test:integration && npm run coverage && npm run test:types",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"test:types": "tsd --files types/*.test-d.ts",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@aws-lite/apigatewaymanagementapi": "^0.0.8",
"@aws-lite/client": "^0.21.7",
"@aws-lite/dynamodb": "^0.3.4",
"@aws-lite/sns": "^0.0.6",
"@aws-lite/sqs": "^0.2.2",
"@aws-lite/ssm": "^0.2.3",
"cookie": "^0.6.0",
"cookie-signature": "^1.2.1",
"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": "^7.0.10",
"@architect/eslint-config": "^3.0.0",
"@architect/req-res-fixtures": "git+https://github.com/architect/req-res-fixtures.git",
"@architect/sandbox": "^6.0.5",
"@aws-lite/apigatewaymanagementapi-types": "^0.0.11",
"@aws-lite/dynamodb-types": "^0.3.6",
"@aws-lite/sns-types": "^0.0.8",
"@aws-lite/sqs-types": "^0.2.4",
"@types/aws-lambda": "^8.10.138",
"@types/node": "18",
"cross-env": "~7.0.3",
"eslint": "^9.3.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"sinon": "^18.0.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.5",
"tiny-json-http": "^7.5.1",
"tsd": "^0.31.0"
},
"files": [
"types/*",
"src/*"
],
"keywords": [
"aws",
"lambda",
"amazon",
"serverless",
"cloud",
"cloudfunctions",
"apigateway",
"dynamodb",
"s3",
"sns",
"api gateway",
"framework"
],
"tsd": {
"compilerOptions": {
"strict": false
}
}
}