-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"private": true,
"scripts": {
"build": "fable build.fsx --run",
"publish": "fable build.fsx --run publish",
"test": "fable build.fsx --run test",
"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.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"@types/node": "^12.7.5",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.2",
"download-cli": "^1.1.1",
"fable-babel-plugins": "^2.2.0",
"fable-compiler": "^2.3.25",
"fable-compiler-js": "^1.0.5",
"fable-loader": "^2.1.8",
"fable-splitter": "^2.1.11",
"ghreleases": "^3.0.2",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"devDependencies": {
"@matthid/source-map-visualization": "^0.5.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12"
},
"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
}
}