forked from demystifyfp/FsToolkit.ErrorHandling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"type": "module",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.56.3"
},
"scripts": {
"pretest:FsToolkit.ErrorHandling.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.Tests -o js-dist/tests/FsToolkit.ErrorHandling.Tests",
"pretest:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests",
"test:FsToolkit.ErrorHandling.Tests": "mocha js-dist/tests/FsToolkit.ErrorHandling.Tests/Main.js --timeout 60000",
"test:FsToolkit.ErrorHandling.AsyncSeq.Tests": "mocha js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/Main.js",
"test": "npm-run-all test:*",
"watch-test:FsToolkit.ErrorHandling.Tests": "dotnet fable watch tests/FsToolkit.ErrorHandling.Tests -o js-dist/tests/FsToolkit.ErrorHandling.Tests --runWatch mocha js-dist/tests/FsToolkit.ErrorHandling.Tests/Main.js --timeout 10000",
"watch-test:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable watch tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests --runWatch mocha js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/Main.js",
"watch-test": "npm-run-all -p watch-test:*"
}
}