-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "bs-react-testing-library",
"version": "0.8.0",
"description": "BuckleScript bindings for react-testing-library.",
"repository": "wyze/bs-react-testing-library",
"author": {
"name": "Neil Kistner",
"email": "[email protected]",
"url": "https://neilkistner.com"
},
"license": "MIT",
"files": [
"src/*.re",
"src/*.rei",
"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.1.0",
"bs-dom-testing-library": "^0.7.0"
},
"peerDependencies": {
"reason-react": "< 0.8.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.5.1",
"@sheerun/mutationobserver-shim": "^0.3.3",
"@wyze/changelog": "^1.0.0",
"@wyze/github-release": "^1.1.1",
"bisect_ppx": "^2.5.0",
"bs-platform": "^8.3.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"reason-react": "^0.9.1",
"rimraf": "^3.0.2"
}
}