forked from rikimasan/rescript-debounce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "rescript-debounce-react",
"version": "1.0.1",
"description": "Debounce hooks for @rescript/react",
"author": "Alex Fedoseev <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/shakacode/rescript-debounce",
"repository": {
"type": "git",
"url": "https://github.com/shakacode/rescript-debounce.git"
},
"scripts": {
"start": "npm run watch",
"build": "rescript build",
"prebuild": "npm run clean",
"watch": "rescript build -w",
"clean": "rescript clean",
"format": "rescript format -all"
},
"files": [
"src",
"bsconfig.json"
],
"keywords": [
"react",
"rescript",
"rescript-react",
"reason",
"reason-react",
"reasonml",
"ocaml",
"bucklescript",
"debounce"
],
"dependencies": {
"rescript-debounce": "^1.0.0"
},
"devDependencies": {
"@rescript/react": "0.10.3",
"rescript": "10.0.1"
}
}