forked from MarceloPrado/has-changed-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 890 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
{
"name": "has-changed-path",
"version": "1.0.3",
"description": "GitHub Action that saves time and money in monorepo environments",
"main": "src/index.js",
"engines": {
"node": "20"
},
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map",
"test": "jest",
"all": "yarn lint && yarn prepare && yarn test"
},
"repository": "[email protected]:ktamas77/has-changed-path.git",
"author": "Tamas Kalman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktamas77/has-changed-path/issues"
},
"homepage": "https://github.com/ktamas77/has-changed-path#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0"
}
}