-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "iobroker.acceptdata",
"version": "0.2.3",
"description": "Accept Data can be used as a destination for devices which generate data and can post it to a device on a network in JSON or URL format",
"author": {
"name": "frankjoke",
"email": "frankjoke@hotmail.com"
},
"scripts": {
"eslint": "eslint",
"test": "npm run test:js && npm run test:package",
"test:js": "mocha --opts test/mocha.custom.opts",
"test:integration": "mocha test/integration --exit",
"test:unit": "mocha test/unit --exit",
"test:package": "mocha test/package --exit",
"upload:run": "bash lar.sh"
},
"main": "acceptdata.js",
"dependencies": {
"@iobroker/adapter-core": "^2.4.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.6",
"csv-parse": "^4.15.4",
"express": "^4.17.1",
"jsonframe-cheerio": "^3.0.1",
"jsonpath-plus": "^5.0.7",
"modern-async": "^1.0.2",
"node-schedule": "^2.0.0",
"plug-and-play": "^2.3.0",
"raw-body": "^2.4.1",
"serve-favicon": "^2.5.0",
"systeminformation": "^5.6.12",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@iobroker/testing": "^2.4.4",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/gulp": "^4.0.8",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cpy-cli": "^3.1.1",
"gulp": "^4.0.2",
"mocha": "^8.3.2",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {
"double": 0,
"isable-next-line": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"bugs": {
"url": "https://github.com/frankjoke/ioBroker.acceptdata/issues"
},
"contributors": [
{
"name": "AlCalzone"
},
{
"name": "bluefox"
}
],
"homepage": "https://github.com/frankjoke/ioBroker.acceptdata",
"keywords": [
"JSON",
"URL",
"GET",
"POST"
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/frankjoke/ioBroker.acceptdata"
}
}