-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "feature-flip",
"version": "1.0.0",
"description": "Flexible React & React Native feature flagging/flipping/toggling for simple use cases",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && tsup src/index.tsx --format cjs,esm --dts --target node16",
"prepublishOnly": "npm run build",
"types:check": "tsc --noEmit",
"format": "pretty-quick --ignore-path .gitignore",
"size": "dist-size"
},
"keywords": [
"feature-toggles",
"feature-flag",
"feature-flip",
"react-native-feature-toggles",
"react-feature-toggles"
],
"homepage": "https://github.com/tiaanduplessis/feature-flip#readme",
"bugs": {
"url": "https://github.com/tiaanduplessis/feature-flip/issues"
},
"repository": {
"url": "tiaanduplessis/feature-flip",
"type": "git"
},
"author": "tiaanduplessis",
"license": "MIT",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/get-value": "^3.0.2",
"@types/react": "^18.0.9",
"@types/testing-library__jest-dom": "^5.14.3",
"c8": "^7.11.2",
"dist-size": "^0.4.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"tsup": "^5.12.7",
"typescript": "^4.6.4",
"vitest": "^0.12.6"
},
"dependencies": {
"get-value": "^3.0.1"
},
"peerDependencies": {
"react": ">= 16.3"
}
}