-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "get-changed-workspaces-action",
"version": "1.0.0",
"description": "An action to get those workspaces where files has been changed.",
"scripts": {
"build": "npm run build:dev -- --minify",
"build:dev": "esbuild src/index.ts --bundle --target=node16 --outfile=dist/index.js --platform=node",
"dev": "npm run build:dev -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "Aleksandras Šukelovič",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/minimatch": "^3.0.5",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"esbuild": "^0.14.10",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@npmcli/map-workspaces": "^2.0.0",
"minimatch": "^3.0.4",
"yaml": "^2.1.3"
}
}