forked from mlms13/bs-decode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 815 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 815 Bytes
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
{
"name": "bs-decode",
"version": "0.3.3",
"description": "Type-safe JSON decoding for ReasonML and OCaml",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"test": "npm run clean && npm run build && jest --testMatch '**/test/*.js'"
},
"repository": {
"type": "git",
"url": "github.com/mlms13/bs-decode"
},
"keywords": [
"reasonml",
"bucklescript",
"json",
"decode",
"validation",
"result",
"applicative"
],
"author": "Michael Martin-Smucker",
"license": "MIT",
"dependencies": {
"bs-abstract": "^0.16.0",
"bs-nonempty": "^1.3.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^4.0.5",
"jest": "^23.5.0"
}
}