-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.07 KB
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
{
"name": "lambda-cacheflow",
"version": "1.0.3",
"engines": {
"node": ">= 12.13 <13"
},
"devDependencies": {
"@types/jest": "~26.0.5",
"@types/node": "~12.12",
"@typescript-eslint/eslint-plugin": "~3.7.0",
"@typescript-eslint/parser": "~3.7.0",
"eslint": "~7.5.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.18.0",
"jest": "~26.1.0",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.3",
"tsutils": "~3.17.0",
"typescript": "~3.9.7"
},
"scripts": {
"start": "ts-node src/handler/printReceipt.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Riccardo Vecchi",
"license": "MIT",
"dependencies": {
"class-transformer": "^0.3.1",
"class-transformer-validator": "^0.9.1",
"class-validator": "^0.12.2",
"ts-node": "^8.10.2",
"tslib": "~2.0.0"
}
}