-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 935 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
{
"name": "pr-vars-action",
"version": "1.0.0",
"description": "An action to replace variables in a given string.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "npm run-script lint && jest",
"package": "npm run-script lint && ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasNel/string-vars-action.git"
},
"keywords": [
"action",
"pr",
"description",
"issue",
"variables",
"substitution"
],
"author": "Andreas Nel",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreasNel/string-vars-action/issues"
},
"homepage": "https://github.com/AndreasNel/string-vars-action#readme",
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0"
}
}