-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 926 Bytes
/
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
{
"name": "no.runely.jslogic",
"version": "1.3.2",
"main": "app.js",
"devDependencies": {
"@types/homey": "npm:[email protected]",
"jest": "29.7.0",
"standard": "17.1.2"
},
"dependencies": {
"moment-timezone": "0.5.46"
},
"scripts": {
"refresh": "rm -rf node_modules/ && rm package-lock.json && npm i",
"test": "standard && env TZ=UTC jest",
"fix": "standard --fix",
"homey-run": "homey app run",
"homey-install": "npm run test && homey app install",
"homey-publish": "npm run test && homey app publish"
},
"repository": {
"url": "https://github.com/runely/jslogic-homey"
},
"license": "GPL-3.0-or-later",
"standard": {
"env": [
"jest"
]
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"testMatch": [
"**/tests/**/*test.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}