forked from fable-compiler/Fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.42 KB
/
package.json
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
{
"private": true,
"type": "module",
"scripts": {
"tsc": "tsc",
"mocha": "mocha",
"rollup": "rollup",
"terser": "terser",
"build": "dotnet fsi build_old.fsx",
"publish": "dotnet fsi build_old.fsx publish",
"test": "dotnet run --project src/Fable.Build/Fable.Build.fsproj -- test",
"tests": "mocha temp/tests/JavaScript/Main --reporter dot -t 10000",
"build-compiler-js": "dotnet fable src/fable-compiler-js/src/fable-compiler-js.fsproj -o build/fable-compiler-js/out",
"postbuild-compiler-js": "rollup build/fable-compiler-js/out/app.js --file src/fable-compiler-js/dist/app.js --format umd --name Fable",
"minify-compiler-js": "terser src/fable-compiler-js/dist/app.js -o src/fable-compiler-js/dist/app.min.js --mangle --compress",
"test-js": "node src/fable-compiler-js/dist/app.js tests/Main/Fable.Tests.fsproj build/tests-js",
"posttest-js": "mocha build/tests-js --reporter dot -t 10000",
"test-ts": "tsc -p build/tests/TypeScript --outDir build/tests/TypeScriptCompiled",
"posttest-ts": "mocha build/tests/TypeScriptCompiled/build/tests/TypeScript -reporter dot -t 10000"
},
"dependencies": {
"@types/node": "^22.4.0",
"concurrently": "^8.2.2",
"ghreleases": "^3.0.2",
"mocha": "^10.7.3",
"nodemon": "^3.1.4",
"rollup": "^4.22.4",
"terser": "^5.31.6",
"typescript": "^5.5.4"
},
"devDependencies": {
"markdownlint-cli": "^0.41.0"
}
}