-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "use-callbag",
"version": "1.0.0",
"description": "👜 Use callbag as React hook.",
"main": "dist/use-callbag.cjs.js",
"module": "dist/use-callbag.esm.js",
"types": "./index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"pretest": "preconstruct dev",
"test": "echo \"Warning: no test specified\" || jest --env=node",
"build": "preconstruct build",
"preversion": "npm test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/use-callbag.git"
},
"author": "Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andarist/use-callbag/issues"
},
"homepage": "https://github.com/Andarist/use-callbag#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@preconstruct/cli": "^2.0.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^17.0.1"
},
"dependencies": {
"callbag": "^1.4.0",
"callbag-subscribe": "^1.5.1"
}
}