-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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
{
"name": "bundle",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint '**/*.{js,ts,tsx}' --quiet --fix",
"check-types": "tsc --noemit",
"lint": "npm run eslint && npm run check-types",
"test": "jest",
"test:watch": "npm run test -- --watch",
"build": "ncc build src/index.ts -o dist --target=es2015",
"dev": "npm run build && node dist/index.js"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/js/",
"/build/"
],
"transform": {
"^.+\\.tsx?$": "esbuild-jest"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@nick-mazuk/eslint-config": "^0.8.13",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/node": "^18.6.2",
"@vercel/ncc": "^0.34.0",
"esbuild": "^0.25.0",
"esbuild-jest": "^0.5.0",
"eslint": "^7.31.0",
"jest": "^28.1.3",
"prettier": "^2.3.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@actions/core": "^1.4.0",
"date-fns": "^2.23.0",
"fs-extra": "^10.0.0"
}
}