-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
108 lines (108 loc) · 2.73 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "flagsmith-react",
"version": "1.2.4",
"description": "Flagsmith integration for React Single Page Applications (SPA)",
"repository": {
"type": "git",
"url": "git+https://github.com/TheMagoo73/flagsmith-react.git"
},
"homepage": "https://github.com/TheMagoo73/flagsmith-react",
"bugs": {
"url": "https://github.com/TheMagoo73/flagsmith-react/issues"
},
"engines": {
"npm": ">7.0.0"
},
"scripts": {
"test": "jest --coverage",
"build": "npm run lint && rollup -c --environment NODE_ENV:production",
"lint": "eslint --ext=js ./src",
"prepack": "npm run build"
},
"keywords": [
"flagsmith",
"feature flags",
"remote configuartion",
"SPA",
"react"
],
"author": {
"name": "John Clarke",
"email": "themagoo@hotmail.co.uk",
"url": "https://medium.com/@johnclarke73"
},
"contributors": [
{
"name": "Ramon Villain",
"url": "https://github.com/ramon-villain"
},
{
"name": "Mateusz Ciezczak"
},
{
"name": "Andrew Nagy",
"url": "https://github.com/tm1000"
}
],
"license": "MIT",
"peerDependencies": {
"react": "^16.11.0 || ^17",
"react-dom": "^16.11.0 || ^17"
},
"dependencies": {
"flagsmith": "^1.5.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.7.2",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-livereload": "^1.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.0"
},
"files": [
"src",
"dist",
"./README.md",
"index.d.ts"
],
"main": "dist/flagsmith-react.cjs.js",
"module": "dist/flagsmith-react.esm.js",
"source": "src/index.js",
"types": "./index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint ./src --fix",
"prettier --write"
]
}
}