forked from use-global-hook/use-global-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.77 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
{
"version": "0.3.1",
"author": "andregardi",
"name": "use-global-hook",
"license": "MIT",
"private": true,
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c ./rollup.config.js",
"prebuild": "yarn install --prefer-offline --frozen-lockfile && rimraf build",
"postbuild": "node ./copy-files.js",
"publishRelease": "git add . && git push --tags && git push && yarn run prebuild && yarn build && yarn run postbuild && git commit -m \":rocket: Add release files\" && git push",
"release:major": "npm version major -m \"Release: %s\" && yarn run publishRelease",
"release:minor": "npm version minor -m \"Release: %s\" && yarn run publishRelease",
"release:patch": "npm version patch -m \"Release: %s\" && yarn run publishRelease"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"cross-env": "^7.0.2",
"glob": "^7.1.6",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"rollup-plugin-terser": "^7.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:br-data/use-global-hook.git"
},
"bugs": {
"url": "https://github.com/use-global-hook/use-global-hook/issues"
},
"contributors": [
"Davit Yavryan <davit.yavryan@gmail.com>"
],
"dependencies": {}
}