@react-native/normalize-colors 0.73.0 → 0.73.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +14 -3
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @react-native/normalize-colors
2
+
3
+ [![Version][version-badge]][package]
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ yarn add --dev @react-native/normalize-colors
9
+ ```
10
+
11
+ *Note: We're using `yarn` to install deps. Feel free to change commands to use `npm` 3+ and `npx` if you like*
12
+
13
+ [version-badge]: https://img.shields.io/npm/v/@react-native/normalize-colors?style=flat-square
14
+ [package]: https://www.npmjs.com/package/@react-native/normalize-colors
15
+
16
+ ## Testing
17
+
18
+ To run the tests in this package, run the following commands from the React Native root folder:
19
+
20
+ 1. `yarn` to install the dependencies. You just need to run this once
21
+ 2. `yarn jest packages/normalize-color`.
package/package.json CHANGED
@@ -1,11 +1,22 @@
1
1
  {
2
2
  "name": "@react-native/normalize-colors",
3
- "version": "0.73.0",
3
+ "version": "0.73.1",
4
4
  "description": "Color normalization for React Native.",
5
+ "license": "MIT",
5
6
  "repository": {
6
7
  "type": "git",
7
- "url": "git@github.com:facebook/react-native.git",
8
+ "url": "https://github.com/facebook/react-native.git",
8
9
  "directory": "packages/normalize-color"
9
10
  },
10
- "license": "MIT"
11
+ "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/normalize-color#readme",
12
+ "keywords": [
13
+ "color",
14
+ "normalization",
15
+ "normalize-colors",
16
+ "react-native"
17
+ ],
18
+ "bugs": "https://github.com/facebook/react-native/issues",
19
+ "engines": {
20
+ "node": ">=18"
21
+ }
11
22
  }