Skip to content

Commit a136329

Browse files
committed
feat(ovtop): initial commit
1 parent 8623b6d commit a136329

File tree

13 files changed

+36
-36
lines changed

13 files changed

+36
-36
lines changed

.commitlintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
2,
88
"always",
99
[
10-
"json-map-keys",
10+
"ovtop",
1111
"jest-transformer",
1212
"webpack-loader",
1313
"rollup-plugin"

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# json-map-keys ![Open Source Love](https://badges.frapsoft.com/os/v3/open-source.svg)
1+
# object-value-to-object-path ![Open Source Love](https://badges.frapsoft.com/os/v3/open-source.svg)
22

33
Replace json values with the key path.
44

@@ -24,29 +24,29 @@ Will generate
2424

2525
## ✅ Status
2626

27-
[![Docs GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/json-map-keys/check-docs.yml?branch=main&label=docs&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/json-map-keys/actions/workflows/check-docs.yml?query=branch%3Amain)
28-
[![Checks GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/json-map-keys/checks.yml?branch=main&label=checks&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/json-map-keys/actions/workflows/checks.yml?query=branch%3Amain)
29-
[![Tests GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/json-map-keys/unit-tests.yml?branch=main&label=unit%20tests&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/json-map-keys/actions/workflows/unit-tests.yml?query=branch%3Amain)
30-
[![Coverage Status](https://img.shields.io/codecov/c/github/tiagoporto/json-map-keys/main?logo=codecov&style=flat-square)](https://app.codecov.io/github/tiagoporto/json-map-keys)
31-
[![Mutation Score](https://img.shields.io/endpoint?style=flat-square&url=https://badge-api.stryker-mutator.io/github.com/tiagoporto/json-map-keys/main)](https://dashboard.stryker-mutator.io/reports/github.com/tiagoporto/json-map-keys/main)
27+
[![Docs GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/object-value-to-object-path/check-docs.yml?branch=main&label=docs&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/object-value-to-object-path/actions/workflows/check-docs.yml?query=branch%3Amain)
28+
[![Checks GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/object-value-to-object-path/checks.yml?branch=main&label=checks&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/object-value-to-object-path/actions/workflows/checks.yml?query=branch%3Amain)
29+
[![Tests GA Workflow Status](https://img.shields.io/github/actions/workflow/status/tiagoporto/object-value-to-object-path/unit-tests.yml?branch=main&label=unit%20tests&logo=githubactions&logoColor=white&style=flat-square)](https://github.com/tiagoporto/object-value-to-object-path/actions/workflows/unit-tests.yml?query=branch%3Amain)
30+
[![Coverage Status](https://img.shields.io/codecov/c/github/tiagoporto/object-value-to-object-path/main?logo=codecov&style=flat-square)](https://app.codecov.io/github/tiagoporto/object-value-to-object-path)
31+
[![Mutation Score](https://img.shields.io/endpoint?style=flat-square&url=https://badge-api.stryker-mutator.io/github.com/tiagoporto/object-value-to-object-path/main)](https://dashboard.stryker-mutator.io/reports/github.com/tiagoporto/object-value-to-object-path/main)
3232

3333
## 📦 Packages
3434

35-
- [json-map-keys](./packages/json-map-keys/README.md)
35+
- [object-value-to-object-path](./packages/object-value-to-object-path/README.md)
3636
- [jest-transformer](./packages/jest-transformer/README.md)
3737
- [webpack-loader](./packages/webpack-loader/README.md)
3838
- [rollup-plugin](./packages/rollup-plugin/README.md)
3939

40-
### json-map-keys
40+
### object-value-to-object-path
4141

42-
[![version](https://img.shields.io/npm/v/json-map-keys?style=flat-square)](https://www.npmjs.com/package/json-map-keys)
43-
![npm type definitions](https://img.shields.io/npm/types/json-map-keys.svg?style=flat-square)
44-
[![npm bundle size](https://img.shields.io/bundlephobia/min/json-map-keys?style=flat-square)](https://bundlephobia.com/package/json-map-keys)
45-
[![Downloads](https://img.shields.io/npm/dm/json-map-keys.svg?style=flat-square)](https://www.npmjs.com/package/json-map-keys)
42+
[![version](https://img.shields.io/npm/v/object-value-to-object-path?style=flat-square)](https://www.npmjs.com/package/object-value-to-object-path)
43+
![npm type definitions](https://img.shields.io/npm/types/object-value-to-object-path.svg?style=flat-square)
44+
[![npm bundle size](https://img.shields.io/bundlephobia/min/object-value-to-object-path?style=flat-square)](https://bundlephobia.com/package/object-value-to-object-path)
45+
[![Downloads](https://img.shields.io/npm/dm/object-value-to-object-path.svg?style=flat-square)](https://www.npmjs.com/package/object-value-to-object-path)
4646

4747
<!-- ![npm type definitions](https://img.shields.io/npm/types/json-map-keys.svg?style=flat-square) -->
4848

49-
Replace json values with the key path.
49+
Replace object values with the full keys path.
5050

5151
### json-map-keys-jest
5252

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "json-map-keys",
2+
"name": "object-value-to-object-path-root",
33
"private": true,
44
"type": "module",
55
"engines": {
@@ -27,7 +27,7 @@
2727
"jest-transformer": "jest"
2828
},
2929
"dependencies": {
30-
"json-map-keys": "workspace:*",
30+
"object-value-to-object-path": "workspace:*",
3131
"json-map-keys-jest": "workspace:*",
3232
"json-map-keys-loader": "workspace:*",
3333
"rollup-plugin-json-map-keys": "workspace:*"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)