-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
{
"name": "@sitespeed.io/plugin-influxdb",
"version": "0.2.0",
"type": "module",
"description": "InfluxDB plugin for sitespeed.io",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sitespeedio/plugin-influxdb.git"
},
"keywords": [
"sitespeed.io",
"influxdb",
"webperf",
"perfmatters"
],
"author": {
"name": "Peter Hedenskog",
"url": "https://www.peterhedenskog.com"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/sitespeedio/plugin-influxdb/issues"
},
"devDependencies": {
"ava": "6.1.3",
"eslint": "8.35.0",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-unicorn": "45.0.2",
"prettier": "1.18.2"
},
"dependencies": {
"@influxdata/influxdb-client": "1.33.2",
"@sitespeed.io/log": "0.2.6",
"@sitespeed.io/plugin": "1.0.0",
"dayjs": "1.11.11",
"influx": "5.9.3",
"lodash.get": "4.4.2",
"lodash.merge": "4.6.2"
},
"scripts": {
"test": "ava",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"main": "./lib/index.js"
}