-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 985 Bytes
/
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
{
"name": "@proti-iac/reporter",
"version": "0.0.0",
"description": "Automated Testing for IaC Programs",
"author": "Daniel Sokolowski <[email protected]>",
"license": "Apache-2.0",
"main": "./bin/reporter.js",
"types": "./bin/reporter.d.ts",
"files": [
"bin"
],
"scripts": {
"clean": "yarn g:clean",
"build": "yarn g:build:tspc",
"lint": "yarn g:lint",
"test": "yarn g:test",
"prepack": "yarn g:prepack && yarn g:license:copy && yarn g:readme:copy && yarn g:readme:urls",
"postpack": "rm README.md LICENSE",
"postinstall": "ts-patch install"
},
"dependencies": {
"@jest/reporters": "^29.7.0",
"@jest/test-result": "^29.7.0",
"csv-stringify": "^6.4.6",
"ts-patch": "3.1.2",
"typia": "^6.0.3"
},
"devDependencies": {
"@proti-iac/core": "workspace:^",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}