|
1 | 1 | { |
2 | | - "name": "create-use-context", |
3 | | - "version": "1.0.1", |
4 | | - "description": "A helper method which wraps original React `createContext` method and provides additional functionality like wrapping a `Context.Provider`, `useContext` helper, etc.", |
5 | | - "repository": { |
6 | | - "type": "git", |
7 | | - "url": "https://github.com/todesstoss/create-use-context.git" |
| 2 | + "author": "Eugene Mickhnitskyy", |
| 3 | + "dependencies": { |
| 4 | + "react-display-name": "0.2.4" |
8 | 5 | }, |
9 | | - "main": "dist/cjs/index.js", |
10 | | - "module": "dist/esm/index.js", |
11 | | - "browser": "dist/umd/index.js", |
12 | | - "scripts": { |
13 | | - "build": "rollup -c", |
14 | | - "dev": "rollup -c -w", |
15 | | - "test": "echo \"Error: no test specified\" && exit 1" |
| 6 | + "description": "A helper method which wraps original React `createContext` method and provides additional functionality like wrapping a `Context.Provider`, `useContext` helper, etc.", |
| 7 | + "devDependencies": { |
| 8 | + "@babel/core": "7.7.4", |
| 9 | + "@babel/preset-env": "7.7.4", |
| 10 | + "@babel/preset-react": "7.7.4", |
| 11 | + "prettier": "1.19.1", |
| 12 | + "rollup": "1.27.5", |
| 13 | + "rollup-plugin-babel": "4.3.3" |
16 | 14 | }, |
| 15 | + "files": [ |
| 16 | + "dist/cjs/*", |
| 17 | + "dist/esm/*" |
| 18 | + ], |
17 | 19 | "keywords": [ |
18 | 20 | "React", |
19 | 21 | "Context", |
20 | 22 | "Hooks", |
21 | 23 | "createContext" |
22 | 24 | ], |
23 | | - "files": [ |
24 | | - "dist/cjs/*", |
25 | | - "dist/esm/*", |
26 | | - "dist/umd/*" |
27 | | - ], |
28 | | - "author": "Eugene Mickhnitskyy", |
29 | 25 | "license": "MIT", |
30 | | - "devDependencies": { |
31 | | - "@babel/core": "^7.4.5", |
32 | | - "@babel/preset-env": "^7.4.5", |
33 | | - "@babel/preset-react": "^7.0.0", |
34 | | - "prettier": "^1.17.1", |
35 | | - "rollup": "^1.12.3", |
36 | | - "rollup-plugin-babel": "^4.3.2", |
37 | | - "rollup-plugin-commonjs": "^10.0.0", |
38 | | - "rollup-plugin-node-resolve": "^5.0.0", |
39 | | - "rollup-plugin-terser": "^5.0.0" |
40 | | - }, |
| 26 | + "main": "dist/cjs/index.js", |
| 27 | + "module": "dist/esm/index.js", |
| 28 | + "name": "create-use-context", |
41 | 29 | "peerDependencies": { |
42 | 30 | "hoist-non-react-statics": "^3.3.0", |
43 | 31 | "react": "^16.8.0" |
44 | 32 | }, |
45 | | - "dependencies": { |
46 | | - "react-display-name": "^0.2.4" |
47 | | - } |
| 33 | + "repository": { |
| 34 | + "type": "git", |
| 35 | + "url": "https://github.com/todesstoss/create-use-context.git" |
| 36 | + }, |
| 37 | + "scripts": { |
| 38 | + "build": "rollup -c", |
| 39 | + "dev": "rollup -c -w", |
| 40 | + "test": "echo \"Error: no test specified\" && exit 1" |
| 41 | + }, |
| 42 | + "version": "1.0.2" |
48 | 43 | } |
0 commit comments