-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 2.68 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@meltwater/mlabs-http",
"version": "5.0.0",
"description": "HTTP client wrapper around Got.",
"type": "module",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"meltwater",
"node"
],
"homepage": "https://github.com/meltwater/mlabs-http",
"bugs": "https://github.com/meltwater/mlabs-http/issues",
"repository": "meltwater/mlabs-http",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "evan.sosenko@meltwater.com"
},
"files": [
"yarn.lock",
"index.js",
"lib",
"data",
"docs"
],
"scripts": {
"test": "c8 ava",
"pretest": "npm-run-all lint",
"posttest": "node index.js",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:inspect": "node --inspect node_modules/ava/profile",
"test:inspect:watch": "nodemon --inspect node_modules/ava/profile",
"lint": "gulp lint",
"preversion": "npm-run-all test",
"postversion": "git push && git push --tags",
"example": "node examples",
"example:watch": "nodemon examples",
"example:inspect": "node --inspect examples",
"example:inspect:watch": "nodemon --inspect examples",
"watch": "gulp watch",
"pretty": "prettier --ignore-path .gitignore --write '**/*.(js|json|graphql)'",
"format": "npm-run-all --serial pretty format:*",
"format:js": "standard --fix",
"report": "c8 report"
},
"ava": {
"files": [
"**/*.spec.js",
"!package/**/*"
]
},
"c8": {
"exclude": [
"**/index.js",
"package/**/*.js",
"examples/**/*.js",
"**/*.spec.js"
],
"reporter": [
"html",
"lcov",
"text"
]
},
"nodemonConfig": {
"ignore": [
"**/*.spec.js",
"test/",
"tmp/"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"endOfLine": "lf"
},
"engines": {
"node": ">=14.15.0"
},
"resolutions": {
"eslint": "^7.12.1",
"standard": "^16.0.2"
},
"dependencies": {
"@meltwater/mlabs-logger": "^9.1.1",
"awilix": "^7.0.1",
"got": "^12.0.1",
"prom-client": "^14.0.1",
"quick-lru": "^6.0.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@meltwater/examplr": "^7.0.0",
"ava": "^4.0.1",
"c8": "^7.11.0",
"eslint": "^7.12.1",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.0",
"gulp-jsonlint": "^1.1.2",
"gulp-standard": "^14.0.0",
"gulp-watch": "^5.0.0",
"gulplog": "^1.0.0",
"nock": "^13.0.2",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.2",
"prettier": "^2.0.1",
"standard": "^16.0.2"
}
}