You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.5 KiB

6 years ago
{
"name": "fnm",
6 years ago
"version": "1.1.0",
"description": "Fast and simple Node.js version manager, built in ReasonML",
6 years ago
"esy": {
"build": "pesy",
6 years ago
"buildsInSource": "_build",
6 years ago
"release": {
"releasedBinaries": [
"fnm.exe"
6 years ago
]
}
},
"buildDirs": {
"test": {
"require": ["fnm.lib", "rely.lib"],
"main": "TestFnm",
"name": "TestFnm.exe",
6 years ago
"ocamloptFlags": ["-linkall", "-g"]
6 years ago
},
"library": {
6 years ago
"preprocess": ["pps", "lwt_ppx", "ppx_let"],
"require": ["str", "core", "lwt", "lwt.unix", "lambdasoup", "semver"],
"name": "fnm.lib",
"namespace": "Fnm"
6 years ago
},
"executable": {
"preprocess": ["pps", "lwt_ppx", "ppx_let"],
"require": ["core", "cmdliner", "lwt", "lwt.unix", "lambdasoup", "console.lib", "pastel.lib", "fnm.lib"],
"main": "FnmApp",
"name": "fnm.exe"
6 years ago
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"test": "esy x TestFnm.exe",
6 years ago
"fmt": "bash -c 'refmt --in-place {library,executable,test}/*.re'"
6 years ago
},
"dependencies": {
"@opam/dune": "*",
6 years ago
"@opam/semver": "*",
6 years ago
"@opam/core": "*",
6 years ago
"@opam/cmdliner": "*",
6 years ago
"@opam/lwt": "*",
"@opam/lwt_ppx": "*",
"@opam/ppx_let": "*",
"@reason-native/console": "*",
"@reason-native/pastel": "*",
6 years ago
"@reason-native/rely": "*",
6 years ago
"@esy-ocaml/reason": "*",
6 years ago
"@opam/lambdasoup": "*",
6 years ago
"refmterr": "*",
"ocaml": "~4.6.0",
"pesy": "*"
},
"devDependencies": {
"@opam/merlin": "*"
}
}