-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "thirty",
"version": "2.0.0-beta.3",
"description": "Lightweight extensions that makes AWS Lambda functions easy to develop, testable and type safe.",
"repository": {
"type": "git",
"url": "git+https://github.com/hypoport/thirty.git",
"directory": "packages/thirty"
},
"main": "index.js",
"homepage": "https://github.com/hypoport/thirty/tree/master#readme",
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.build.json",
"build:clean": "tsc --build tsconfig.build.json --clean",
"prettier:write": "prettier --write \"src/**/*.{ts,json}\"",
"lint": "prettier --check \"src/**/*.{ts,json}\"",
"prepublishOnly": "npm test && npm run build"
},
"jest": {
"transform": {
"^.+\\.(ts)$": "ts-jest"
}
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
},
"dependencies": {
"cookie": "^0.4.0",
"csrf": "^3.1.0",
"jsonwebtoken": "^9.0.0"
},
"peerDependencies": {
"@types/aws-lambda": "^8.10.125"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"@types/jest": "^29.5.7",
"aws-lambda": "^1.0.7",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"author": "",
"license": "ISC"
}