forked from launchdarkly/react-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.72 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "launchdarkly-react-client-sdk",
"version": "3.0.9",
"description": "LaunchDarkly SDK for React",
"author": "LaunchDarkly <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"launchdarkly",
"launch",
"darkly",
"react",
"sdk",
"bindings"
],
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
},
"main": "./lib/cjs/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src",
"!**/*.test.*",
"!**/__snapshots__"
],
"scripts": {
"test": "jest",
"test:junit": "jest --ci --reporters=default --reporters=jest-junit",
"clean": "rimraf lib/*",
"rb": "rollup -c --configPlugin typescript",
"rbw": "yarn rb --watch",
"build": "yarn clean && yarn rb",
"lint": "tslint -p tsconfig.json 'src/**/*.ts*'",
"lint:all": "npm run lint",
"check-typescript": "tsc",
"prepublishOnly": "npm run build",
"prettier": "prettier --write 'src/*.@(js|ts|tsx|json|css)'",
"link-dev": "./link-dev.sh",
"check": "npm i && npm run prettier && npm run lint && tsc && npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/launchdarkly/react-client-sdk.git"
},
"homepage": "https://github.com/launchdarkly/react-client-sdk",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.3",
"@types/lodash.camelcase": "^4.3.6",
"@types/prop-types": "^15.7.4",
"@types/react": "^18.0.3",
"@types/react-dom": "^18.0.0",
"@types/react-test-renderer": "^18.0.0",
"esbuild": "^0.18.11",
"jest": "^27.4.4",
"jest-environment-jsdom": "^27.4.4",
"jest-environment-jsdom-global": "^3.0.0",
"jest-junit": "^13.0.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.0",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-filesize": "^10.0.0",
"ts-jest": "^27.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.3"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"launchdarkly-js-client-sdk": "^3.1.3",
"lodash.camelcase": "^4.3.0"
},
"peerDependencies": {
"react": "^16.6.3 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0"
}
}