forked from JasonEtco/create-an-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "create-an-issue",
"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 <jasonetco@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"actions-toolkit": "^6.0.1",
"front-matter": "^4.0.2",
"js-yaml": "^4.1.0",
"nunjucks": "^3.2.3",
"nunjucks-date-filter": "^0.1.1"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^27.0.2",
"@types/nunjucks": "^3.2.0",
"@vercel/ncc": "^0.31.1",
"jest": "^27.2.3",
"nock": "^13.1.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/tests/setup.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|js)"
],
"globals": {
"ts-jest": {
"babelConfig": false
}
}
}
}