forked from rescript-labs/decco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 972 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
{
"name": "@ryb73/decco",
"version": "0.0.14",
"description": "Bucklescript PPX which generates JSON (de)serializers for user-defined types",
"main": "index.js",
"scripts": {
"test": "jest",
"build-lib": "bsb -clean-world -make-world",
"watch": "bsb -clean-world -make-world -w",
"clean": "rm -rf lib && bsb -clean-world && rm -rf ppx/_esy",
"build-ppx": "cd ppx && esy",
"postinstall": "[ ! -f package-links.json ] || ppl link-file"
},
"bin": {
"ppx_decco": "./ppx/ppx_decco.sh"
},
"files": [
"/bsconfig.json",
"/src",
"/lib/js/src",
"/ppx/ppx_decco.sh",
"/ppx/ppx-linux.exe",
"/ppx/ppx-osx.exe"
],
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ryb73/ppx_decco.git"
},
"_": [],
"peerDependencies": {
"bs-platform": "^5.0.0"
},
"devDependencies": {
"@glennsl/bs-jest": "0.4.8",
"esy": "0.5.7",
"jest": "^24.8.0"
}
}