-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.15 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "no.matsa.yr",
"description": "Get the weather forecast from Yr, the weather service by Norwegian Meteorological Institute and the Norwegian Broadcasting Corporation",
"version": "0.1.0",
"author": "Mats Andreassen <matsand@live.no> (https://github.com/matsand)",
"license": "MIT",
"main": "app.js",
"engines": {
"node": ">=12.16.1"
},
"devDependencies": {
"@tsconfig/node12": "12.1.4",
"@types/homey": "npm:homey-apps-sdk-v3-types@0.3.10",
"@types/jest": "29.5.14",
"@types/node": "22.13.4",
"browserify": "17.0.1",
"eslint": "8.57.1",
"eslint-config-athom": "3.1.3",
"homey": "3.7.15",
"jest": "29.7.0",
"standard": "17.0.0"
},
"dependencies": {
"moment": "2.29.4",
"yr-forecast": "1.0.3"
},
"scripts": {
"test": "standard && env TZ=UTC jest",
"fix": "standard --fix",
"ts:lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"refresh": "rm -rf node_modules/ && rm package-lock.json && npm i",
"homey-build": "browserify lib/variable-management.js --standalone variableMgmt -o settings/variable-management.js && homey app build",
"homey-run": "npm run homey-build && homey app run",
"homey-install": "npm run test && npm run homey-build && homey app install",
"homey-publish": "npm run test && npm run homey-build && npm run fix && homey app publish"
},
"homepage": "https://github.com/MatsAnd/yr-homey#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MatsAnd/yr-homey.git"
},
"bugs": {
"url": "https://github.com/MatsAnd/yr-homey/issues"
},
"renovate": {
"extends": [
"config:base",
":disableDependencyDashboard"
],
"separateMultipleMajor": true,
"separateMinorPatch": true,
"ignoreUnstable": true,
"timezone": "Europe/Oslo",
"assigneesFromCodeOwners": true,
"assigneesSampleSize": 1,
"stabilityDays": 2,
"labels": [
"dependencies"
],
"vulnerabilityAlerts": {
"labels": [
"security"
]
},
"commitBody": "Dependency update (patch)",
"packageRules": [{
"automerge": true,
"matchUpdateTypes": [
"patch",
"pin",
"digest"
]
},
{
"automerge": true,
"matchDepTypes": [
"devDependencies",
"peerDependencies",
"optionalDependencies"
]
}
],
"dependencyDashboard": false
},
"standard": {
"ignore": [
"settings/*.js"
],
"env": [
"jest"
]
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/.homeybuild/"
],
"testMatch": [
"**/tests/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}