generated from pabio/github-actions-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "@upptime/updates",
"version": "1.0.1",
"description": "Starter for GitHub Actions with TypeScript and automated releases",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upptime/updates.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"starter"
],
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/upptime/updates/issues"
},
"homepage": "https://github.com/upptime/updates#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
}
}