forked from JasonEtco/create-an-issue
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1004 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
37
38
39
40
41
42
43
44
45
{
"name": "create-a-github-issue",
"version": "3.2.1",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "npx ncc run ./src/index.ts",
"test": "jest --coverage",
"build": "npx ncc build ./src/index.ts"
},
"author": "Jason Etcovitch <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1",
"actions-toolkit": "6.0.1",
"front-matter": "4.0.2",
"js-yaml": "4.1.0",
"nunjucks": "3.2.4",
"nunjucks-date-filter": "0.1.1"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/nunjucks": "3.2.6",
"@vercel/ncc": "0.38.1",
"jest": "29.7.0",
"nock": "13.5.5",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/setup.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".+\\.tsx?$": "ts-jest"
}
}
}