-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "jest-launchdarkly-mock",
"version": "2.1.0",
"description": "Easily unit test LaunchDarkly feature flagged components with jest",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prettier": "prettier --write 'src/**/*.@(js|ts|tsx|json|css)'",
"lint": "eslint --ext ts,tsx,js,jsx src",
"test": "jest",
"check": "yarn prettier && yarn lint && yarn tsc && yarn test",
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/launchdarkly/jest-launchdarkly-mock.git"
},
"keywords": [
"jest",
"launchdarkly",
"mock",
"unit",
"test",
"feature",
"flags"
],
"author": "Yusinto Ngadiman",
"license": "Apache-2.0",
"homepage": "https://github.com/launchdarkly/jest-launchdarkly-mock#readme",
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1"
},
"peerDependencies": {
"launchdarkly-react-client-sdk": "^3.0.0",
"react": ">=17.0.2"
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@types/lodash.camelcase": "^4.3.6",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.snakecase": "^4.1.6",
"@types/react": "^17",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"launchdarkly-js-client-sdk": "^3.0.0",
"launchdarkly-react-client-sdk": "^3.0.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"packageManager": "[email protected]",
"workspaces": [
"example"
],
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"resolutions": {
"lodash": "^4.17.21"
}
}