forked from MarceloPrado/has-changed-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 864 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
{
"name": "has-changed-path",
"version": "1.0.0",
"description": "GitHub Action that saves time and money in monorepo environments",
"main": "src/index.js",
"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]:MarceloPrado/has-changed-path.git",
"author": "Marcelo Prado <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarceloPrado/has-changed-path/issues"
},
"homepage": "https://github.com/MarceloPrado/has-changed-path#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2"
}
}