-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "typical-fetch",
"version": "1.5.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "github:runeh/typical-fetch",
"homepage": "https://github.com/runeh/typical-fetch#readme",
"author": "Rune Finstad Halvorsen <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint ./src --ext .ts,.tsx",
"test": "jest --coverage src/**/*",
"build": "tsc",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "~26.0.22",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "~4.27.0",
"@typescript-eslint/parser": "~4.27.0",
"eslint": "~7.29.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "~24.3.5",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "~27.0.4",
"mime": "^2.5.2",
"nock": "^13.1.0",
"prettier": "^2.3.1",
"runtypes": "^6.3.1",
"ts-jest": "~27.0.3",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typanion": "^3.3.1",
"typedoc": "^0.21.0",
"typedoc-plugin-markdown": "^3.10.0",
"typescript": "^4.3.4",
"zod": "^3.2.0"
},
"dependencies": {
"@types/mime": "^2.0.3",
"@types/node-fetch": "^2.5.10",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"ts-invariant": "^0.8.2"
}
}