-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 1.33 KB
/
package.json
File metadata and controls
20 lines (20 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"type": "module",
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"npm-run-all": "^4.1.5",
"rollup": "^2.80.0"
},
"scripts": {
"pretest:FsToolkit.ErrorHandling.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.Tests -o tests/FsToolkit.ErrorHandling.Tests/.js-tests",
"pretest:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/.js-tests",
"test:FsToolkit.ErrorHandling.Tests": "node tests/FsToolkit.ErrorHandling.Tests/.js-tests/Main.js --timeout 60000",
"test:FsToolkit.ErrorHandling.AsyncSeq.Tests": "node tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/.js-tests/Main.js",
"test": "npm-run-all test:*",
"watch-test:FsToolkit.ErrorHandling.Tests": "dotnet fable watch tests/FsToolkit.ErrorHandling.Tests -o tests/FsToolkit.ErrorHandling.Tests/.js-tests --runWatch node tests/FsToolkit.ErrorHandling.Tests/.js-tests/Main.js --timeout 10000",
"watch-test:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable watch tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/.js-tests --runWatch node tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/.js-tests/Main.js",
"watch-test": "npm-run-all -p watch-test:*"
}
}