forked from DenverCoderOne/readme-repos-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "readme-repos-list",
"version": "1.3.2",
"description": "GitHub Action to list repositories in a README",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DenverCoderOne/readme-repos-list.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"readme",
"repositories"
],
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DenverCoderOne/readme-repos-list/issues"
},
"homepage": "https://github.com/DenverCoderOne/readme-repos-list#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.14",
"@zeit/ncc": "^0.22.3",
"jest": "^26.5.2",
"semantic-release": "^17.1.2",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@koj/config": "^1.2.5"
},
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false
}
}