-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.17 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
{
"name": "iobroker.energy-schedule",
"version": "0.5.4",
"description": "Energy scheduling adapter using Corrently GrünstromIndex",
"author": {
"name": "STROMDAO GmbH",
"email": "[email protected]"
},
"homepage": "https://github.com/energychain/ioBroker.energy-schedule#readme",
"license": "MIT",
"keywords": [
"ioBroker",
"energy",
"schedule",
"corrently",
"gruenstromindex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/energychain/ioBroker.energy-schedule.git"
},
"engines": {
"node": ">= 12"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.12",
"corrently-api": "^2.0.5"
},
"devDependencies": {
"@iobroker/testing": "^3.0.2",
"@types/node": "^14.17.33",
"chai": "^4.3.4",
"mocha": "^9.1.3"
},
"main": "main.js",
"files": [
"admin/",
"lib/",
"main.js",
"io-package.json"
],
"scripts": {
"test": "npm run test:package && npm run test:unit && npm run test:integration",
"test:package": "mocha test/package.js --exit",
"test:unit": "mocha test/unit.js --exit",
"test:integration": "mocha test/integration.js --exit"
}
}