-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "fetcher-ts",
"version": "1.1.1",
"description": "REST HTTP client built in functional style",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"build": "rm -rf ./lib && tsc --build tsconfig.production.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YBogomolov/fetcher-ts.git"
},
"keywords": [
"fetch",
"fp",
"functional",
"fp-ts"
],
"author": "Yuriy Bogomolov <yuriy.bogomolov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YBogomolov/fetcher-ts/issues"
},
"homepage": "https://github.com/YBogomolov/fetcher-ts#readme",
"peerDependencies": {
"cross-fetch": "^3.0.4",
"fp-ts": "^2.3.1",
"io-ts": "^2.0.2"
},
"devDependencies": {
"@types/jest": "^24.0.24",
"cross-fetch": "^3.0.4",
"fp-ts": "^2.3.1",
"io-ts": "^2.0.2",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"dependencies": {},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest"
}
}