forked from ocaml-ppx/ppx_deriving
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bs-deriving",
"version": "44.2.0",
"description": "Type-driven code generation for OCaml, ReasonML, and BuckleScript",
"main": "src/runtime/gen/ppx_deriving_runtime.bs.js",
"directories": {
"example": "src_examples"
},
"devDependencies": {
"archiver": "^3.0.0",
"bs-platform": "^8.3.0",
"cpy": "^7.2.0",
"make-dir": "^3.0.0",
"node-jq": "^1.9.0",
"ppx-deriving": "=44.2.0"
},
"peerDependencies": {
"bs-platform": ">=4.x"
},
"scripts": {
"build:examples": "npm run build:ppx && cd src_examples && bsb -make-world",
"build:runtime": "dune build 'src/runtime/ppx_deriving_runtime.ml' 'src/runtime/ppx_deriving_runtime.mli' && bsb -make-world",
"build:ppx": "dune build 'src_test/all/test_deriving_all.exe' && node scripts/package.js",
"build": "npm run build:runtime && npm run build:ppx",
"clean": "dune clean && bsb -clean-world && cd src_examples && bsb -clean-world",
"prepare": "npm run clean && npm run build:runtime",
"preversion": "./scripts/preversion.sh",
"version": "./scripts/version.sh",
"test:ppx": "dune runtest",
"pretest:examples": "npm run build:examples",
"test:examples": "node src_examples/print_test.bs.js",
"test": "npm run test:ppx && npm run test:examples",
"travis": "./scripts/travis.sh"
},
"files": [
"bsconfig.json",
"bs_deriving.opam",
"src_examples/**/*.ml",
"src_examples/**/*.mli",
"src_examples/**/*.bs.js",
"src/**/*.ml",
"src/**/*.mli",
"src/**/*.bs.js",
"src_plugins/**/*.ml",
"src_plugins/**/*.mli",
"src_plugins/**/*.bs.js",
"src_test/**/*.ml",
"src_test/**/*.mli",
"src_test/**/*.bs.js",
"!**/dune",
"!**/.merlin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ELLIOTTCABLE/bs-deriving.git"
},
"author": "whitequark <whitequark@whitequark.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ELLIOTTCABLE/bs-deriving/issues"
},
"homepage": "https://github.com/ELLIOTTCABLE/bs-deriving#readme",
"dependencies": {
"@elliottcable/bs-result": "^12.0.0-pre.2"
},
"keywords": [
"BuckleScript",
"ReasonML",
"OCaml",
"PPX",
"AST",
"transpiler",
"tool",
"codegen",
"functional",
"types",
"static-typing"
]
}