-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 867 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 867 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
33
34
{
"name": "@rescript/core",
"version": "1.3.0",
"scripts": {
"clean": "rescript clean",
"build": "rescript",
"watch": "rescript build -w",
"test": "node test/TestSuite.mjs && node test/TempTests.mjs",
"test-doc-examples": "node scripts/DocTests.mjs --ignore-runtime-tests 'RescriptCore.Array.toReversed, RescriptCore.Promise.withResolvers'"
},
"keywords": [
"rescript"
],
"homepage": "https://github.com/rescript-association/rescript-core",
"author": "ReScript Team",
"license": "MIT",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"rescript.json",
"src/**/*.res",
"src/**/*.resi",
"src/**/*.mjs"
],
"peerDependencies": {
"rescript": "^11.1.0-rc.7"
},
"devDependencies": {
"@babel/code-frame": "7.18.6",
"@rescript/tools": "^0.5.0",
"rescript": "^11.1.0-rc.7"
}
}