-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 945 Bytes
/
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
{
"name": "react-easy-contexts",
"version": "0.5.0",
"description": "A simple tool to add multiple React contexts easily.",
"keywords": [
"react",
"hooks",
"contexts"
],
"main": "dist/react-easy-contexts.cjs.js",
"module": "dist/react-easy-contexts.esm.js",
"repository": "https://github.com/nanxiaobei/react-easy-contexts.git",
"author": "nanxiaobei <nanxiaobei@gmail.com>",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && rollup -c"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-app": "^6.2.2",
"prettier": "^2.3.2",
"rollup": "^2.53.1",
"rollup-plugin-babel": "^4.4.0"
}
}