-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.58 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
{
"name": "@poool/react-subscribe",
"version": "1.0.0",
"description": "Subscribe elements for React",
"main": "dist/poool-react-subscribe.cjs.js",
"repository": "https://github.com/p3ol/react-subscribe.git",
"author": "Ugo Stephant <ugo@poool.fr>",
"license": "MIT",
"unpkg": "dist/poool-react-subscribe.umd.js",
"cdn": "dist/poool-react-subscribe.umd.js",
"jsnext:main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"esnext": "src",
"sideEffects": false,
"engines": {
"node": "16 || 18 || 20",
"npm": ">=8"
},
"dependencies": {
"@babel/runtime-corejs3": "7.22.15",
"@junipero/core": "3.2.3",
"core-js": "3.32.2",
"prop-types": "15.8.1"
},
"devDependencies": {
"@babel/core": "7.22.20",
"@babel/eslint-parser": "7.22.15",
"@babel/eslint-plugin": "7.22.10",
"@babel/plugin-transform-runtime": "7.22.15",
"@babel/preset-env": "7.22.20",
"@babel/preset-react": "7.22.15",
"@poool/eslint-config": "3.0.1",
"@poool/eslint-config-react": "3.0.1",
"@poool/eslint-plugin": "3.0.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.4",
"@rollup/plugin-node-resolve": "15.2.1",
"@rollup/plugin-terser": "0.4.3",
"@testing-library/react": "14.0.0",
"auto-changelog": "2.4.0",
"babel-loader": "9.1.3",
"codecov": "3.8.3",
"eslint": "8.47.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-standard": "5.0.0",
"html-webpack-plugin": "5.5.3",
"jest": "29.6.4",
"jest-dev-server": "9.0.1",
"jest-environment-jsdom": "29.6.4",
"puppeteer": "21.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.15.0",
"rollup": "3.28.1",
"standard-version": "9.5.0",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"prebuild": "yarn clean",
"build": "./node_modules/.bin/rollup -c",
"serve": "./node_modules/.bin/webpack serve --config ./webpack.config.js",
"prepack": "yarn build && yarn lint && yarn test",
"test": "NODE_ENV='test' ./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint --max-warnings=0 .",
"changelog": "./node_modules/.bin/standard-changelog",
"release": "./node_modules/.bin/standard-version && git push --follow-tags"
}
}