forked from ioBroker/ioBroker.javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 KB
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
{
"name": "iobroker.javascript",
"version": "5.1.4",
"description": "Rules Engine for ioBroker",
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
"bluefox <dogafox@gmail.com>",
"hobbyquaker <hq@ccu.io>",
"ingo@fischer-ka.de",
"AlCalzone"
],
"homepage": "https://github.com/ioBroker/ioBroker.javascript",
"license": "MIT",
"keywords": [
"ioBroker",
"javascript",
"script",
"engine",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.javascript"
},
"engines": {
"node": ">=10.0.0"
},
"optionalDependencies": {
"vm2": "^3.9.2"
},
"dependencies": {
"@iobroker/adapter-core": "^2.4.0",
"@types/node": "^14.14.43",
"@types/request": "^2.48.5",
"coffee-compiler": "^0.3.2",
"coffee-script": "^1.12.7",
"jsonata": "^1.8.4",
"node-inspect": "^2.0.0",
"node-schedule": "1.3.2",
"request": "^2.88.2",
"semver": "^7.3.4",
"suncalc2": "^1.8.1",
"typescript": "^4.1.3",
"virtual-tsc": "^0.6.1",
"wake_on_lan": "^1.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^1.8.3",
"@types/iobroker": "^3.2.7",
"alcalzone-shared": "^3.0.1",
"chai": "^4.2.0",
"del": "^6.0.0",
"eslint": "^7.11.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"mocha": "^8.2.1",
"timekeeper": "^2.2.0"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.javascript/issues"
},
"main": "main.js",
"scripts": {
"test:declarations": "tsc -p test/lib/TS/tsconfig.json && tsc -p test/lib/JS/tsconfig.json",
"test:javascript": "node node_modules/mocha/bin/mocha --exit",
"test": "npm run test:declarations && npm run test:javascript",
"postinstall": "node ./install/installTypings.js",
"prepublishOnly": "node node_modules/gulp/bin/gulp.js",
"build": "node node_modules/gulp/bin/gulp.js",
"release": "release-script"
}
}