generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "github-slug",
"description": "GitHub Action to expose slug values of branch/tag/version inside your GitHub workflow",
"main": "src/index.js",
"scripts": {
"lint": "eslint --config package.json './src/**/*.js'",
"build": "ncc build src/index.js -o dist --minify --no-cache",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gacts/github-slug.git"
},
"keywords": [
"github",
"actions",
"slug"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gacts/github-slug/issues"
},
"homepage": "https://github.com/gacts/github-slug#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"cli-table": "^0.3.11",
"slugify": "^1.6.6"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.0",
"jest": "^29.7.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
},
"rules": {}
},
"engines": {
"node": "20"
}
}