-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 686 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@hyperpolymath/supernorma",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": "./src/Mod.res.js",
"scripts": {
"rescript:build": "bunx rescript build",
"rescript:clean": "bunx rescript clean",
"rescript:watch": "bunx rescript build -w",
"build": "bun run rescript:build",
"clean": "bun run rescript:clean",
"test": "bun test $(find tests -name '*_test.res.js' | sed 's|^|./|')",
"test:unit": "bun test $(find tests/unit -name '*_test.res.js' | sed 's|^|./|')",
"test:integration": "bun test $(find tests/integration -name '*_test.res.js' | sed 's|^|./|')"
},
"devDependencies": {
"rescript": "12.3.1"
}
}