Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Nov 8, 2024
1 parent 3f70134 commit a1779cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parser to support toml syntax.
[![build](https://github.com/jsonicjs/toml/actions/workflows/build.yml/badge.svg)](https://github.com/jsonicjs/toml/actions/workflows/build.yml)
[![Coverage Status](https://coveralls.io/repos/github/jsonicjs/toml/badge.svg?branch=main)](https://coveralls.io/github/jsonicjs/toml?branch=main)
[![Known Vulnerabilities](https://snyk.io/test/github/jsonicjs/toml/badge.svg)](https://snyk.io/test/github/jsonicjs/toml)
[![DeepScan grade](https://deepscan.io/api/teams/5016/projects/22466/branches/663906/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=5016&pid=22466&bid=663906)
[![DeepScan grade](https://deepscan.io/api/teams/5016/projects/25270/branches/788641/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=5016&pid=25270&bid=788641)
[![Maintainability](https://api.codeclimate.com/v1/badges/10e9bede600896c77ce8/maintainability)](https://codeclimate.com/github/jsonicjs/toml/maintainability)

| ![Voxgig](https://www.voxgig.com/res/img/vgt01r.png) | This open source module is sponsored and supported by [Voxgig](https://www.voxgig.com). |
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsonic/toml",
"version": "0.6.0",
"version": "0.7.0",
"description": "This plugin allows the [Jsonic](https://jsonic.senecajs.org) JSON parser to support toml syntax.",
"main": "dist/toml.js",
"type": "commonjs",
Expand All @@ -25,11 +25,10 @@
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test dist-test",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
"clean": "rm -rf node_modules yarn.lock package-lock.json test/toml-test",
"doc": "jsonic-doc",
"prettier": "prettier --write --no-semi --single-quote *.ts test/*.js",
"prettier": "prettier --write --no-semi --single-quote src/*.ts test/*.js",
"install-toml-test": "git -C test/toml-test pull || git clone https://github.com/BurntSushi/toml-test.git test/toml-test",
"clean": "rm -rf node_modules yarn.lock package-lock.json test/toml-test",
"reset": "npm run clean && npm i && npm run install-toml-test && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
Expand All @@ -45,6 +44,7 @@
"@hapi/code": "^9.0.3",
"@jsonic/doc": "^0.0.9",
"@types/node": "^22.9.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
Expand Down

0 comments on commit a1779cd

Please sign in to comment.