forked from expo/react-native-appearance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·87 lines (87 loc) · 2.39 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
{
"name": "react-native-appearance",
"version": "0.3.4",
"description": "Polyfill for `Appearance` API which will be available in `[email protected]`.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index",
"types": "lib/typescript/index.d.ts",
"sideEffects": false,
"nativePackage": true,
"files": [
"!/example",
"/lib",
"/src",
"/android",
"!/android/build",
"/ios",
"/*.podspec"
],
"author": "Brent Vatne <[email protected]>",
"homepage": "https://github.com/expo/react-native-appearance#readme",
"license": "MIT",
"scripts": {
"prepare": "bob build",
"start": "react-native start",
"start:web": "expo start --web --config example/app.json",
"test": "yarn validate:prettier && yarn validate:eslint && yarn validate:typescript",
"validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --project ./ --noEmit",
"validate:prettier": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"jest-setup.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/lib/"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"keywords": [
"react-native",
"react native",
"react-native-web",
"expo-web",
"appearance"
],
"dependencies": {
"fbemitter": "^2.1.1",
"invariant": "^2.2.4",
"use-subscription": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@react-native-community/bob": "^0.7.0",
"@react-native-community/eslint-config": "^0.0.5",
"@types/react-native": "^0.60.5",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "3.0.1",
"expo": "^34.0.4",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "^1.18.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-native": "~0.60.3",
"react-native-web": "^0.11.7",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/expo/react-native-appearance.git"
}
}