-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
69
70
{
"name": "fable.-jester",
"version": "0.33.0",
"description": "Fable bindings for jest and friends",
"homepage": "https://github.com/Shmew/Fable.Jester",
"bugs": {
"url": "https://github.com/Shmew/Fable.Jester/issues/new/choose"
},
"license": "MIT",
"author": "Cody Johnson",
"repository": {
"type": "git",
"url": "https://github.com/Shmew/Fable.Jester"
},
"scripts": {
"build": "webpack -p",
"pretest": "yarn pretest-fc && yarn pretest-jest && yarn pretest-rtl",
"pretest-fc": "fable-splitter -c tests/Fable.FastCheck.Tests/splitter.config.js",
"pretest-jest": "fable-splitter -c tests/Fable.Jester.Tests/splitter.config.js",
"pretest-rtl": "fable-splitter -c tests/Fable.ReactTestingLibrary.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": "^7",
"@testing-library/dom": "^7",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^11",
"@testing-library/user-event": "^13",
"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"
},
"private": true,
"jest": {
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./bin"
}
]
],
"roots": [
"./dist/tests"
],
"testEnvironment": "jsdom"
}
}