1
0
mirror of https://github.com/qntm/fastjson synced 2026-03-24 07:44:46 +01:00

Compare commits

..

No commits in common. "49322e8dae8ee909dfd1b4e5655b6089f6a34185" and "88528dc01dd3ceb8de2b8b32d259f3bc806e21e8" have entirely different histories.

2 changed files with 5 additions and 2 deletions

View File

@ -19,14 +19,16 @@
],
"scripts": {
"bench": "node ./benchmarks/index.js",
"unit": "node --test --experimental-test-coverage",
"unit": "c8 --100 mocha",
"postpublish": "npm version patch && git push",
"standard": "standard",
"test": "npm run standard && npm run unit"
},
"devDependencies": {
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"chance": "^1.1.7",
"mocha": "^11.0.0",
"standard": "^17.0.0"
}
}

View File

@ -1,5 +1,6 @@
/* eslint-env mocha */
import assert from 'node:assert/strict'
import { describe, it } from 'node:test'
import { parse, stringify } from '../src/index.js'