-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (36 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (36 loc) · 1017 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
{
"name": "fhem-controls-actions",
"version": "3.0.0",
"description": "This action creates FHEM controls file via github actions which is compatible with `fhem update all` and `fhem update add` command.",
"main": "main.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build main.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhem/fhem-controls-actions.git"
},
"keywords": [
"fhem",
"controls",
"file",
"update"
],
"author": "sidey79",
"license": "ISC",
"bugs": {
"url": "https://github.com/fhem/fhem-controls-actions/issues"
},
"homepage": "https://github.com/fhem/fhem-controls-actions#readme",
"dependencies": {
"@actions/core": "^2.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"eslint": "^10.2.0",
"jest": "^30.3.0"
}
}