-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
58 lines (58 loc) · 1.26 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
{
"name": "bs-decode",
"version": "1.2.0",
"description": "Type-safe JSON decoding for ReasonML and OCaml",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"cleanbuild": "npm run clean && npm run build",
"watch": "bsb -make-world -w",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"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",
"bucklescript",
"json",
"decode",
"validation",
"result",
"applicative"
],
"author": "Michael Martin",
"license": "MIT",
"peerDependencies": {
"bs-bastet": "^2.0.0",
"relude": "^0.66.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.7.0",
"bs-bastet": "^2.0.0",
"bs-platform": "^7.2.2",
"coveralls": "^3.0.9",
"relude": "^0.66.1"
},
"jest": {
"testPathIgnorePatterns": [
"./test/output",
"_build",
"_opam"
],
"coveragePathIgnorePatterns": [
"./test"
],
"testMatch": [
"**/test/*.js"
]
}
}