-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@iobroker/build-tools",
"version": "2.0.9",
"description": "Replacement for gulp",
"author": {
"name": "Denis Haev",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/build-tools"
},
"dependencies": {
"glob": "^11.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/eslint-config": "^1.0.0",
"@types/node": "^22.9.3",
"typescript": "^5.7.2"
},
"main": "build/index.js",
"files": [
"build/",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"release": "release-script",
"release-patch": "release-script patch --yes --no-update-lockfile",
"release-minor": "release-script minor --yes --no-update-lockfile",
"release-major": "release-script major --yes --no-update-lockfile",
"update-packages": "ncu --upgrade && cd src-admin && ncu --upgrade",
"lint": "eslint -c eslint.config.mjs",
"test": "cd test && node collectFiles",
"npm": "npm i -f"
}
}