-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 KB
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
{
"name": "fable-yjs",
"version": "1.0.0",
"private": true,
"type": "module",
"mocha": {
"inline-diffs": true,
"parallel": true,
"require": "source-map-support/register",
"spec": "build/tests/Ylmish.Tests/Ylmish.Tests.js",
"timeout": 20000
},
"scripts": {
"install": "dotnet restore && dotnet tool restore",
"adaptify": "dotnet msbuild tests/Ylmish.Tests/Ylmish.Tests.fsproj /t:AdaptifyLocal",
"mocha": "dotnet fable tests/Ylmish.Tests/Ylmish.Tests.fsproj -o build/tests/Ylmish.Tests --sourceMaps --run mocha",
"watch-adaptify-tests": "dotnet watch --verbose --project tests/Ylmish.Tests/Ylmish.Tests.fsproj -- msbuild Ylmish.Tests.fsproj /t:AdaptifyLocal",
"watch-fable-and-mocha": "dotnet fable watch tests/Ylmish.Tests/Ylmish.Tests.fsproj -o build/tests/Ylmish.Tests --sourceMaps --run mocha --watch",
"test+watch": "concurrently --kill-others --names \"Fable/Mocha,Adaptify\" -c green,cyan \"npm:watch-fable-and-mocha\" \"npm:watch-adaptify-tests\"",
"test": "npm run adaptify && npm run mocha"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"mocha": "^11.0.0",
"source-map-support": "0.5.21"
},
"dependencies": {
"yjs": "^13.6.0"
}
}