-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (52 loc) · 1.06 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
{
"name": "io-ts-immutable",
"version": "0.2.1",
"description": "A collection of io-ts codecs for the immutable collections from immutable-js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Cedric Krause",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Cedware/io-ts-immutable"
},
"bugs": {
"url": "https://github.com/Cedware/io-ts-immutable/issues"
},
"scripts": {
"build": "tsc -p .",
"prepublish": "yarn build"
},
"peerDependencies": {
"fp-ts": "^2.0.0",
"immutable": "^4.0.0-rc.12",
"io-ts": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5",
"fp-ts": "^2.0.0",
"immutable": "^4.0.0-rc.12",
"io-ts": "^2.0.0"
},
"dependencies": {
},
"tags": [
"io-ts",
"immutable",
"immutablejs",
"immutable-js",
"types",
"codec"
],
"keywords": [
"io-ts",
"immutable",
"immutablejs",
"immutable-js",
"types",
"codec"
]
}