-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.14 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
{
"name": "@inovaebiz/inova-feature-flag",
"displayName": "Inova Feature Flag",
"sponsor": {
"url": "https://inovaebiz.com.br/"
},
"maintainers": [
{
"name": "Inova e-Business",
"url": "https://inovaebiz.com.br/"
},
{
"name": "Vinícius Petrachin",
"url": "https://github.com/viniciuspetrachin"
}
],
"version": "1.1.7",
"description": "O Inova Feature Flag é uma biblioteca para React e React Native que permite configurar e acessar flags de recursos em seu aplicativo. Com ela, você pode facilmente definir as flags de recursos em um único lugar e acessá-las em todo o seu aplicativo usando um simples hook. Além disso, a biblioteca oferece recursos para cache de dados, permitindo que você escolha entre async storage ou MMKV como método de armazenamento. O Inova Feature Flag é mantido pela Inova e-Business para seus projetos internos.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"prepare": "npm run build",
"prepublishOnly": "npm run prettier && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/inovaebiz/inova-feature-flag.git"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"react",
"react-native",
"feature",
"flag",
"inova",
"inovaebiz",
"inova e-business"
],
"author": "Vinicius Petrachin",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.3"
}
}