-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 893 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 893 Bytes
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
{
"name": "github-action-json",
"version": "1.0.1",
"description": "Edit or Read the content of any json file or the package.json that you want.",
"scripts": {
"prepare": "husky install && npm run build",
"build": "ncc build src/index.ts -o lib",
"watch": "ncc watch src/index.ts -o lib"
},
"author": "RadovanPelka",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RadovanPelka/github-action-json"
},
"lint-staged": {
"*.ts?(x)": [
"npm run build"
]
},
"keywords": [
"actions",
"package",
"package.json",
"json",
"node",
"setup",
"config",
"configs"
],
"dependencies": {
"@actions/core": "^1.10.0",
"ramda": "^0.28.0"
},
"devDependencies": {
"@kkt/ncc": "~1.0.12",
"@types/ramda": "^0.28.15",
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
}
}