-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "bundle-size-reporter-action",
"version": "1.4.1",
"description": "Bundle size reporter",
"main": "dist/index.js",
"keywords": [
"actions",
"node",
"setup",
"typescript",
"GitHub"
],
"author": "Nejc <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nejcm/bundle-size-reporter-action.git"
},
"bugs": {
"url": "https://github.com/nejcm/bundle-size-reporter-action/issues"
},
"homepage": "https://github.com/nejcm/bundle-size-reporter-action#readme",
"scripts": {
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"lint:ts": "tsc --noEmit",
"test": "jest",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"build": "tsc && ncc build --source-map",
"ncc": "yarn build"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"glob": "^8.0.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@types/node": "^16.18.3",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"typescript": "4.9.3",
"ts-jest": "^29.0.3"
}
}