-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 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
{
"name": "@brightlayer-ui/react-native-themes",
"author": "Brightlayer UI <[email protected]>",
"license": "BSD-3-Clause",
"version": "7.0.1",
"description": "React Native themes for Brightlayer UI applications",
"main": "./dist/index.js",
"scripts": {
"initialize": "bash scripts/initializeSubmodule.sh",
"install:showcase-ios": "cd demos/showcase && yarn && cd ios && pod install && cd ../../.. && yarn link:themes",
"install:showcase-android": "cd demos/showcase && yarn && cd ../.. && yarn link:themes",
"start": "yarn start:showcase",
"start:showcase": "yarn initialize && yarn start:showcase-ios",
"start:showcase-ios": "yarn initialize && yarn install:showcase-ios && cd demos/showcase && yarn ios",
"start:showcase-android": "yarn initialize && yarn install:showcase-android && cd demos/showcase && yarn android",
"build": "yarn && tsc",
"link:themes": "bash ./scripts/linkThemes.sh",
"test": "bash ./scripts/buildTest.sh",
"publish:package": "set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "npx -p @brightlayer-ui/tag blui-tag -s -blui-react-native-themes",
"update:submodule": "git submodule update --remote",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json",
"precommit": "yarn build && yarn generate:licenses && yarn prettier && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etn-ccis/blui-react-native-themes.git"
},
"bugs": {
"url": "https://github.com/etn-ccis/blui-react-native-themes/issues"
},
"homepage": "https://github.com/etn-ccis/blui-react-native-themes/tree/master",
"keywords": [
"Brightlayer UI",
"themes",
"Eaton",
"React Native"
],
"dependencies": {
"@brightlayer-ui/colors": "4.0.0",
"color": "^4.2.3"
},
"peerDependencies": {
"react-native-paper": "^5.0.0"
},
"devDependencies": {
"@brightlayer-ui/prettier-config": "^1.0.3",
"@types/color": "^3.0.1",
"npm-license-crawler": "^0.2.1",
"prettier": "^3.0.0",
"react-native-paper": "^5.0.0",
"typescript": "^5.0.4",
"react-native": "~0.74.1",
"react": "^18.2.0"
},
"prettier": "@brightlayer-ui/prettier-config",
"files": [
"package.json",
"README.md",
"LICENSE",
"LICENSES.json",
"CHANGELOG.md",
"/dist"
]
}