forked from rescript-lang/rescript-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "@rescript/react",
"version": "0.10.3",
"description": "React bindings for ReScript",
"files": [
"README.md",
"Changes.md",
"LICENSE",
"bsconfig.json",
"src/**/*.res",
"src/**/*.resi"
],
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "echo 'tests disabled for now'"
},
"keywords": [
"rescript",
"react"
],
"author": "Ricky Vetter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/rescript-react.git"
},
"homepage": "https://rescript-lang.org/docs/react/latest/introduction",
"devDependencies": {
"bs-platform": "8.3.0",
"jest": "^26.0.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-test-framework": "^0.3.2"
},
"peerDependencies": {
"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)/)"
]
}
}