generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1001 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
{
"name": "@i40mc/nx-get-affected-action",
"private": true,
"description": "This action returns the apps that got affected since the last build",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./src/main.ts",
"start": "npx ncc run ./src/main.ts",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i40MC/nx-get-affected-action.git"
},
"keywords": [
"actions",
"node",
"nx"
],
"author": "scomans",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"glob": "^10.4.2",
"semver": "^7.6.2"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.14.6",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^7.13.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-github": "^5.0.1",
"js-yaml": "^4.1.0",
"typescript": "^5.4.5"
}
}