forked from fable-compiler/Fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"private": true,
"scripts": {
"build": "fable build.fsx --run",
"publish": "fable build.fsx --run publish",
"test": "fable build.fsx --run test",
"build-compiler-js": "fable src/fable-compiler-js/src/fable-compiler-js.fsproj 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 --commonjs",
"posttest-js": "mocha build/tests-js --reporter dot -t 10000"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@types/node": "^14.0.5",
"babel-loader": "^8.1.0",
"concurrently": "^5.1.0",
"download-cli": "^1.1.1",
"fable-babel-plugins": "^2.3.0",
"fable-compiler": "^2.9.0",
"fable-compiler-js": "^1.3.1",
"fable-loader": "^2.1.9",
"fable-splitter": "^2.1.13",
"ghreleases": "^3.0.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"rollup": "^2.10.8",
"terser": "^4.7.0",
"tslint": "^6.1.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@matthid/source-map-visualization": "^0.5.0",
"nyc": "^15.0.1",
"source-map-support": "^0.5.16"
},
"nyc": {
"extension": [
".ts",
".fs",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"lcov",
"cobertura",
"text"
],
"report-dir": "./build/coverage/nyc",
"temp-dir": "./build/coverage/nyc/temp",
"sourceMap": true,
"produce-source-map": true,
"all": true
}
}