forked from saraht129/react-native-launch-darkly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
{
"name": "react-native-launch-darkly",
"version": "0.0.13",
"description": "React Native wrapper over LaunchDarkly SDK's for iOS and Android.",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"es"
],
"scripts": {
"build:cjs": "rimraf lib && babel src --extensions '.ts' --extensions '.tsx' --ignore '**/__tests__' --ignore '**/__testutils__' -d lib",
"build:es": "rimraf es && cross-env ES_MODULES=true babel src --extensions '.ts' --extensions '.tsx' --ignore '**/__tests__' --ignore '**/__testutils__' -d es",
"build:typings": "tsc --skipLibCheck -p tsconfig.typings.json",
"build": "yarn build:cjs && yarn build:es && yarn build:typings",
"lint": "tslint --project . \"src/**/*.{ts,tsx}\""
},
"keywords": [
"react-native",
"feature flag",
"feature toggle"
],
"author": "Pawel Janik <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/p-janik/react-native-launch-darkly.git"
},
"peerDependencies": {
"react": "16.8.6",
"react-native": "^0.59.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/graphql": "^14.0.3",
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@types/react-native": "0.57.63",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-dom": "^2.1.1",
"jest-react-profiler": "^0.1.3",
"lint-staged": "^8.1.0",
"prettier": "~1.15.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hooks-testing-library": "^0.4.1",
"react-testing-library": "^6.1.2",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "~3.5.3"
}
}