-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "no.runely.calendar",
"version": "1.8.1",
"main": "app.js",
"engines": {
"node": ">=12.16.1"
},
"repository": {
"url": "https://github.com/runely/calendar-homey"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@tsconfig/node12": "12.1.4",
"@types/homey": "npm:[email protected]",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"browserify": "17.0.1",
"eslint": "8.57.1",
"eslint-config-athom": "3.1.3",
"eslint-plugin-jest": "27.9.0",
"jest": "29.7.0",
"standard": "17.1.2"
},
"dependencies": {
"croner": "7.0.8",
"humanize-duration": "3.32.1",
"lodash.clonedeep": "4.5.0",
"moment-timezone": "0.5.46",
"node-ical": "0.16.1"
},
"scripts": {
"test": "standard && npm run ts:lint && 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",
"browserify": "browserify lib/variable-management.js --standalone variableMgmt -o settings/variable-management.js",
"homey-build": "npm run browserify && npm run test && homey app build",
"homey-run": "npm run homey-build && homey app run",
"homey-run-remote": "npm run homey-build && homey app run --remote",
"homey-install": "npm run homey-build && homey app install",
"homey-publish": "npm run homey-build && npm run fix && homey app publish"
},
"standard": {
"ignore": [
"settings/*.js",
"homeyscripts/*.js"
],
"env": [
"jest"
]
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/.homeybuild/"
],
"testMatch": [
"**/tests/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}