forked from wyze/bs-react-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 KB
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
{
"name": "@tomvardasca/rescript-react-testing-library",
"version": "0.9.2",
"description": "ReScript bindings for react-testing-library.",
"repository": "tomvardasca/rescript-react-testing-library",
"author": {
"name": "Neil Kistner",
"email": "neil.kistner@gmail.com"
},
"contributors": [
{
"name": "Tomé Vardasca",
"email": "tome@vardas.ca"
}
],
"license": "MIT",
"files": [
"src/*.res",
"src/*.resi",
"bsconfig.json"
],
"scripts": {
"build": "bsb -make-world",
"clean": "run-p clean:*",
"clean:bsb": "bsb -clean-world",
"clean:project": "rimraf _coverage lib .merlin *.coverage",
"jest": "jest --setupTestFrameworkScriptFile=./setupTests.js",
"postversion": "github-release",
"prebuild": "yarn clean",
"pretest": "yarn build",
"preversion": "yarn build",
"test": "yarn jest",
"test:coverage": "BISECT_ENABLE=yes yarn test",
"version": "changelog"
},
"keywords": [
"bucklescript",
"react",
"testing"
],
"dependencies": {
"@testing-library/react": "^11.2.5",
"bs-dom-testing-library": "^0.7.0"
},
"peerDependencies": {
"@rescript/react": "0.10.1"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.6.0",
"@rescript/react": "^0.10.1",
"@sheerun/mutationobserver-shim": "^0.3.3",
"@wyze/changelog": "^1.0.0",
"@wyze/github-release": "^1.1.1",
"bisect_ppx": "^2.6.0",
"bs-platform": "^9.0.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2"
}
}