This repository was archived by the owner on Feb 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.32 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.32 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
{
"name": "reason-loadable",
"description": "Suspense/Lazy for ReasonReact",
"version": "1.0.0",
"author": "Robin Meillet <robin.meillet@epitech.eu>",
"license": "MIT",
"scripts": {
"make": "bsb -make-world",
"makew": "bsb -make-world -w",
"test": "jest",
"testw": "jest --watchAll",
"format": "./refmt.sh",
"clean": "bsb -clean-world"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@glennsl/bs-jest": "^0.5.1",
"@komponente/react-hello-world": "^0.0.1",
"babel-jest": "^26.0.1",
"babel-preset-react-app": "^9.1.2",
"bs-platform": "^7.3.2",
"bs-react-testing-library": "^0.7.2",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"reason-react": ">=0.8.0"
},
"peerDependencies": {
"reason-react": ">=0.8.0"
},
"jest": {
"transformIgnorePatterns": [],
"testMatch": [
"**/__tests__/**/*_test.bs.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kMeillet/reason-loadable.git"
},
"keywords": [
"reason",
"reasonreact",
"dynamic",
"module",
"import",
"code-splitting",
"lazy-loading",
"chunksplit"
],
"bugs": {
"url": "https://github.com/kMeillet/reason-loadable/issues"
},
"homepage": "https://github.com/kMeillet/reason-loadable#readme"
}