forked from mlms13/bs-decode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 976 Bytes
/
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
{
"name": "bs-decode",
"version": "1.2.0",
"description": "Type-safe JSON decoding for ReasonML and OCaml",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"homepage": "https://mlms13.github.io/bs-decode/docs",
"repository": {
"type": "git",
"url": "https://github.com/mlms13/bs-decode.git"
},
"bugs": "https://github.com/mlms13/bs-decode/issues",
"keywords": [
"reasonml",
"json",
"decode",
"validation",
"result",
"applicative"
],
"author": "Michael Martin",
"license": "MIT",
"devDependencies": {
"bs-platform": "^7.2.2",
"coveralls": "^3.0.9",
"jest": "^26.5.2",
"@testing-library/jest-dom": "^5.10.0"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"_build",
"_opam"
],
"coveragePathIgnorePatterns": [
"./test/output/test"
],
"testMatch": [
"**/test/output/test/*.js"
]
}
}