-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
51
52
53
54
55
56
{
"name": "architecture-upload-github-action",
"version": "1.0.0",
"private": true,
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"aws-sdk": "^2.1015.0",
"yaml-schema-validator": "^1.2.3"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext ts",
"build": "tsc",
"format": "prettier --write .",
"start": "tsc && node build/index.js"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.3"
},
"jest": {
"testURL": "http://localhost/",
"clearMocks": true,
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}