forked from rescript-lang/rescript-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 700 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 700 Bytes
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
{
"name": "@rescript/core",
"version": "1.0.0",
"scripts": {
"clean": "rescript clean",
"build": "rescript",
"watch": "rescript build -w",
"test": "node test/TestSuite.mjs && node test/TempTests.mjs"
},
"keywords": [
"rescript"
],
"homepage": "https://github.com/rescript-association/rescript-core",
"author": "ReScript Team",
"license": "MIT",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"bsconfig.json",
"src/**/*.res",
"src/**/*.resi",
"src/**/*.mjs"
],
"peerDependencies": {
"rescript": ">=11.0.0 || ^11.1.0-rc.2"
},
"devDependencies": {
"rescript": "11.1.0-rc.2",
"@babel/code-frame": "7.18.6"
}
}