-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "@rescript-labs/decco",
"version": "2.0.4",
"description": "Rescript PPX which generates JSON (de)serializers for user-defined types",
"main": "index.js",
"scripts": {
"postinstall": "node postinstall.js",
"test": "jest",
"build-lib": "rescript build",
"watch": "rescript build -w",
"clean": "rm -rf lib && rescript clean && rm -rf ppx_src/_build",
"build-ppx": "cd ppx_src && dune build",
"watch-ppx": "cd ppx_src && dune build -w",
"preview-ppx": "./bin/preview-ppx.sh",
"preview-ppx-watch": "./bin/preview-ppx-watch.sh",
"print-parse-tree": "./node_modules/rescript/bsc -dparsetree",
"print-parse-tree-with-ppx": "./node_modules/rescript/bsc -dparsetree -ppx ./ppx"
},
"files": [
"/rescript.json",
"/postinstall.js",
"/src",
"/ppx",
"/ppx.cmd",
"/ppx-linux.exe",
"/ppx-osx.exe",
"/ppx-windows.exe"
],
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:rescript-labs/decco.git"
},
"_": [],
"peerDependencies": {
"rescript": "11"
},
"devDependencies": {
"@glennsl/rescript-jest": "^0.11.0",
"jest": "^27.3.1",
"rescript": "^11.1.0"
}
}