-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.78 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
66
67
68
{
"name": "@harnessio/ff-react-native-client-sdk",
"version": "3.0.0",
"author": "Harness",
"license": "Apache-2.0",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"types": "dist/esm/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist; npm run build-esm; npm run build-cjs",
"build-esm": "tsc -p ./tsconfig-build.json",
"build-cjs": "tsc -p ./tsconfig-build.json --module commonjs --outDir dist/cjs",
"format": "prettier --write src"
},
"peerDependencies": {
"react": ">=16.7.0",
"react-native": ">=0.70.0",
"@react-native-async-storage/async-storage": ">=1.0.0"
},
"dependencies": {
"@harnessio/ff-react-client-sdk": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/lodash.omit": "^4.5.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-junit": "^15.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
},
"keywords": [
"Harness",
"Feature",
"Flags",
"Continuous",
"Features",
"CD",
"CI",
"CF",
"Drone",
"React",
"React Native"
],
"repository": {
"type": "git",
"url": "git+https://github.com/harness/ff-react-native-client-sdk.git"
},
"homepage": "https://github.com/harness/ff-react-native-client-sdk#readme",
"bugs": {
"url": "https://github.com/harness/ff-react-native-client-sdk/issues"
}
}