forked from reasonml/reason-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "reason-react",
"version": "0.9.2",
"description": "React bindings for Reason",
"files": [
"README.md",
"HISTORY.md",
"LICENSE",
"bsconfig.json",
"src"
],
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest",
"format": "find ./src -iname '*.re' | xargs bsrefmt --in-place && find ./src -iname '*.rei' | xargs bsrefmt -i true --in-place"
},
"keywords": [
"reasonml",
"bucklescript",
"react"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/reasonml/reason-react.git"
},
"homepage": "https://reasonml.github.io/reason-react/",
"devDependencies": {
"bs-platform": "^7.3.1",
"jest": "^26.0.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-test-framework": "^0.3.2"
},
"peerDependencies": {
"bs-platform": "^7.1.1",
"react": "^16.8.1",
"react-dom": "^16.8.1"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"roots": [
"test"
],
"testMatch": [
"**/*__test.bs.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(bs-platform|reason-react|reason-react-compat|reason-react-update|bs-webapi|bs-css|bs-css-emotion|reason-test-framework)/)"
]
}
}