forked from balmli/node-homey-utility-prices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.08 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
{
"name": "@balmli/homey-utility-prices",
"version": "1.6.0",
"description": "Price utility for Homey apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prebuild": "del dist/",
"build": "tsc",
"watch": "tsc -w",
"pretest": "npm run build",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --timeout 10000 'tests/**/*.*'",
"test0": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --timeout 10000 'tests/**/currentPriceAmongNextHoursComparer_*.*'",
"test2": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --timeout 10000 'tests2/**/*.*'",
"test3": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register --timeout 10000 'tests2/**/fetch_monthly_average_*.*'",
"prepublishOnly": "npm run test"
},
"keywords": [
"node",
"utility",
"prices"
],
"repository": {
"type": "git",
"url": "git+https://github.com/balmli/node-homey-utility-prices.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/balmli/node-homey-utility-prices/issues"
},
"homepage": "https://github.com/balmli/node-homey-utility-prices#readme",
"license": "ISC",
"dependencies": {
"@balmli/homey-logger": "^1.0.0",
"@balmli/homey-public-holidays": "^1.0.1",
"@balmli/homey-utility-prices-client": "^1.0.0",
"http.min": "2.1.0",
"moment-timezone": "0.5.40"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.12",
"chai": "^4.3.6",
"cpy-cli": "^4.2.0",
"del-cli": "^3.0.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}