This repository was archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
65
{
"name": "@optimizely/react-sdk",
"version": "0.4.0-beta1",
"description": "Use Optimizely Feature Flags and AB Tests easily in React with a library of pre-built components",
"author": "Jordan Garcia <jordan@gmail.com>",
"homepage": "https://github.com/optimizely/fullstack-labs/tree/master/packages/react-sdk",
"license": "Apache-2.0",
"module": "dist/react-sdk.mjs",
"types": "dist/index.d.ts",
"main": "dist/react-sdk.js",
"browser": "dist/react-sdk.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist",
"LICENSE",
"CHANGELOG",
"README.md"
],
"scripts": {
"tsc": "rm -rf lib/ && tsc",
"build": "rm -rf dist/ && node ./scripts/build.js",
"test": "jest --silent",
"prepublishOnly": "npm run test && npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@optimizely/js-sdk-logging": "^0.1.0",
"@optimizely/optimizely-sdk": "3.2.0",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.6.2",
"react-broadcast": "0.7.1",
"utility-types": "^2.1.0"
},
"peerDependencies": {
"react": ">=16.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^23.3.12",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.7.18",
"@types/react-broadcast": "^0.6.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest": "^23.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript2": "^0.18.1",
"rollup-plugin-uglify": "^6.0.1",
"ts-jest": "^23.10.5",
"tslib": "^1.9.3",
"typescript": "3.5.1"
}
}