This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "readmeio",
"description": "Track your API metrics within ReadMe.",
"version": "5.2.0",
"license": "ISC",
"homepage": "https://readme.com/metrics",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/readmeio/metrics-sdks/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:readmeio/metrics-sdks.git"
},
"keywords": [
"api-metrics",
"readme"
],
"engines": {
"node": ">=14"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@types/har-format": "^1.2.7",
"@types/node-fetch": "^2.6.2",
"content-type": "^1.0.4",
"find-cache-dir": "^3.3.1",
"flat-cache": "^3.0.4",
"lodash": "^4.17.15",
"node-fetch": "^2.6.7",
"timeout-signal": "^1.1.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@readme/eslint-config": "^9.0.0",
"@types/jest": "^27.4.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"eslint": "^8.10.0",
"express": "^4.17.1",
"form-data": "^4.0.0",
"is-valid-uuid-v4": "^1.2.0",
"jest": "^27.5.1",
"multer": "^1.4.5-lts.1",
"nock": "^13.2.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prepack": "npm run build",
"pretest": "npm run build && npm run lint",
"prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
"test": "jest --coverage"
},
"prettier": "@readme/eslint-config/prettier"
}