-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.84 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
64
65
66
67
68
{
"name": "fable.-extras",
"version": "0.4.2",
"description": "Fable bindings for jest and friends",
"homepage": "https://github.com/Shmew/Fable.Extras",
"bugs": {
"url": "https://github.com/Shmew/Fable.Extras/issues/new/choose"
},
"license": "MIT",
"author": "Cody Johnson",
"repository": {
"type": "git",
"url": "https://github.com/Shmew/Fable.Extras"
},
"scripts": {
"build": "webpack -p",
"build-wasm": "wasm-pack build src/fable-wasm",
"build-wasm-import": "wasm-pack build src/fable-wasm-import",
"pretest": "fable-splitter -c tests/Fable.Extras.Tests/splitter.config.js",
"publish-docs": "node publish.js",
"start": "live-server --port=8080 docs/",
"test": "jest",
"test-watch": "npx nodemon -e fs,fsproj,fsi --watch tests --watch src --exec yarn test",
"test-watch-html": "concurrently --kill-others \"yarn watch-html\" \"yarn test-watch\"",
"watch-html": "live-server --port=8081 bin/jest_html_reporters.html"
},
"dependencies": {
"react": "^16",
"react-dom": "^16"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/plugin-transform-modules-commonjs": "^7",
"@babel/preset-env": "^7",
"@sinonjs/fake-timers": "^6",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^11",
"@testing-library/user-event": "^12",
"concurrently": "^5",
"core-js": "^3",
"fable-compiler": "^2",
"fable-splitter": "^2",
"fast-check": "^1",
"gh-pages": "^3",
"jest": "^26",
"jest-html-reporters": "^2",
"live-server": "^1",
"nodemon": "^2",
"npx": "^10",
"prettier": "^2",
"wasm-pack": "^0"
},
"private": true,
"jest": {
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./bin"
}
]
],
"roots": [
"./dist/tests"
]
}
}