-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "@devhammed/use-global-hook",
"version": "1.5.4",
"description": "Painless global state management for React using Hooks and Context API in 1KB!",
"main": "lib/index.js",
"types": "index.d.ts",
"private": false,
"homepage": "https://devhammed.github.io/use-global-hook",
"repository": {
"type": "git",
"url": "https://github.com/devhammed/use-global-hook"
},
"scripts": {
"clean": "rm -rf lib",
"build": "rollup -c",
"prepublish": "npm run clean && npm run build",
"example": "parcel example/index.html",
"predeploy": "rm -rf .cache && rm -rf dist && parcel build example/index.html --public-url /use-global-hook",
"deploy": "gh-pages -d dist -m 'build: new release'"
},
"files": [
"lib",
"index.d.ts"
],
"keywords": [
"react",
"state",
"store",
"hooks",
"context-api"
],
"author": "Hammed Oyedele <itz.harmid@gmail.com> (https://devhammed.github.io)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-core": "^6.26.3",
"gh-pages": "^2.1.1",
"is-obj": "^2.0.0",
"parcel": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-terser": "^5.1.3"
},
"peerDependencies": {
"react": "^16.8.0"
}
}