-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathpackage.json
129 lines (129 loc) · 2.86 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fnm",
"version": "1.8.0",
"description": "Fast and simple Node.js version manager, built in ReasonML",
"esy": {
"build": "pesy",
"buildsInSource": "_build",
"release": {
"releasedBinaries": [
"fnm.exe"
]
}
},
"buildDirs": {
"test": {
"require": [
"fnm.lib",
"rely.lib"
],
"main": "TestFnm",
"name": "TestFnm.exe",
"ocamloptFlags": [
"-linkall",
"-g"
]
},
"library": {
"preprocess": [
"pps",
"lwt_ppx",
"ppx_let"
],
"require": [
"str",
"core",
"lwt",
"ssl",
"lwt_ssl",
"lambdasoup",
"semver",
"cohttp",
"cohttp-lwt",
"cohttp-lwt-unix"
],
"name": "fnm.lib",
"namespace": "Fnm"
},
"executable": {
"preprocess": [
"pps",
"lwt_ppx",
"ppx_let"
],
"require": [
"core",
"cmdliner",
"lwt",
"lambdasoup",
"console.lib",
"pastel.lib",
"fnm.lib"
],
"main": "FnmApp",
"name": "fnm.exe"
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"update-fnm-package": "node ./.ci/prepare-fnm-package.js",
"verify-fnm-package": "node ./.ci/prepare-fnm-package.js --fail-on-difference",
"bootstrap": ".ci/bootstrap",
"test": "esy x TestFnm.exe",
"fmt": "bash -c 'refmt --in-place {library,executable,test}/*.re'",
"changelog": "bash -c 'esy lerna-changelog --from=v1.0.0 --next-version=${NEXT_VERSION-Unreleased} > CHANGELOG.md'",
"version:prepare": "node ./.ci/prepare-version.js"
},
"license": "GPL-3.0",
"dependencies": {
"@opam/dune": "*",
"@opam/semver": "*",
"@opam/core": "*",
"@opam/cmdliner": "*",
"@opam/lwt": "*",
"@opam/lwt_ppx": "*",
"@opam/ppx_let": "*",
"@opam/cohttp": "*",
"@opam/cohttp-lwt": "*",
"@opam/cohttp-lwt-unix": "*",
"@opam/ssl": "*",
"@opam/lwt_ssl": "*",
"@reason-native/console": "*",
"@reason-native/pastel": "~0.2.0",
"@reason-native/rely": "~1.2.0",
"@esy-ocaml/reason": "*",
"@opam/lambdasoup": "*",
"refmterr": "*",
"ocaml": "~4.6.0",
"pesy": "*"
},
"devDependencies": {
"@opam/merlin": "*",
"prettier": "*",
"jest-diff": "24.0.0",
"lint-staged": "*",
"lerna-changelog": "*"
},
"changelog": {
"repo": "Schniz/fnm",
"labels": {
"PR: New Feature": "New Feature 🎉",
"PR: Bugfix": "Bugfix 🐛",
"PR: Internal": "Internal 🛠",
"PR: Documentation": "Documentation 📝"
}
},
"lint-staged": {
"*.re": [
"esy refmt --in-place",
"git add"
],
"*.{js,md,json}": [
"esy prettier --write",
"git add"
],
"package.json": [
"esy verify-fnm-package"
]
}
}