-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"name": "action-input-parser",
"version": "1.2.38",
"description": "Helper for parsing inputs in a GitHub Action",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "eslint ./src/ --ext .ts",
"watch": "tsc -w -p tsconfig.json",
"build": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetaHuhn/action-input-parser.git"
},
"bugs": {
"url": "https://github.com/BetaHuhn/action-input-parser/issues"
},
"homepage": "https://github.com/BetaHuhn/action-input-parser#readme",
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"keywords": [
"nodejs",
"github-actions",
"github-actions-typescript",
"github-actions-javascript",
"config-parser"
],
"dependencies": {
"dotenv": "^8.6.0"
},
"devDependencies": {
"@betahuhn/config": "^1.1.0",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}