-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 2 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
{
"name": "try-in-web-ide",
"version": "1.0.0",
"description": "Try in Web IDE",
"repository": {
"type": "git",
"url": "https://github.com/redhat-actions/try-in-web-ide"
},
"author": "Red Hat",
"license": "MIT",
"scripts": {
"compile": "tsc -p .",
"bundle": "npx ncc build src/index.ts --source-map --minify",
"clean": "rm -rf out/ dist/",
"lint": "eslint . --max-warnings=0",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/out"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.2.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/node": "^12",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vercel/ncc": "^0.29.2",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.4.0",
"fs-extra": "^10.0.0",
"jest": "^27.0.1",
"ts-jest": "^27.0.1",
"typescript": "^4.3"
},
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/github": "^4.0.0",
"@octokit/core": "^3.6.0",
"@octokit/plugin-rest-endpoint-methods": "^3.17.0",
"@octokit/rest": "^17.11.2",
"@octokit/types": "^4.1.10",
"@octokit/webhooks": "^7.5.0",
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13"
}
}