-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.31 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-callbag-streams",
"version": "0.2.5",
"description": "apply streaming operators (like debounce) on your component state / props",
"main": "dist/es5/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"scripts": {
"start": "webpack serve --config ./conf/webpack/dev.conf.ts",
"watch": "webpack --config ./conf/webpack/dev.conf.ts --watch",
"test": "ts-node --files --project conf/typescript/test.json test.ts",
"build-bundle": "webpack --config ./conf/webpack/prod.conf.ts",
"build-es5": "tsc -p conf/typescript/es5.json",
"build-es6": "tsc -p conf/typescript/es6.json",
"build": "npm run build-es5 && npm run build-es6",
"pack": "rollup -c conf/rollup/es6.js && rollup -c conf/rollup/es5.js",
"cov:inst": "nyc instrument --compact false src .instrumented",
"cov:gen": "nyc npm run test",
"cov:view": "nyc npm run test && npm run cov:clean",
"cov:travis": "nyc npm run test && npx codecov",
"cov:clean": "rm -fr ./.nyc_output && rm -fr ./coverage"
},
"keywords": [
"react",
"react hooks",
"frontend",
"streams",
"callbag"
],
"sideEffects": false,
"files": [
"dist/es6",
"dist/es5",
"dist/bundles"
],
"dependencies": {
"callbag": "^1.4.0",
"callbag-combine": "^1.2.0",
"callbag-map": "^1.1.0",
"callbag-merge": "^3.2.2",
"callbag-pipe": "^1.2.0",
"callbag-subject": "^2.1.0",
"use-callbag": "^1.0.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@types/chai": "^4.2.14",
"@types/estree": "0.0.46",
"@types/jsdom": "^16.2.6",
"@types/jsdom-global": "^3.0.2",
"@types/mocha": "^8.2.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"callbag": "^1.4.0",
"callbag-common": "^0.1.5",
"callbag-scan": "^1.1.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"html-webpack-plugin": "^4.5.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"nyc-config-tsx": "^0.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.38.1",
"rollup-plugin-terser": "^7.0.2",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/react-callbag-streams.git"
},
"author": "Eugene Ghanizadeh Khoub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/react-callbag-streams/issues"
},
"homepage": "https://github.com/loreanvictor/react-callbag-streams#readme",
"nyc": {
"extends": "nyc-config-tsx",
"all": true,
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"src/**/test/*",
"src/types/*"
],
"reporter": [
"text",
"lcov"
]
}
}