You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
63 lines
1.6 KiB
3 years ago
|
{
|
||
|
"name": "fast-json-stringify",
|
||
|
"version": "2.7.13",
|
||
|
"description": "Stringify your JSON at max speed",
|
||
|
"main": "index.js",
|
||
|
"types": "index.d.ts",
|
||
|
"scripts": {
|
||
|
"benchmark": "node bench.js",
|
||
|
"lint:fix": "standard --fix",
|
||
|
"test:lint": "standard",
|
||
|
"test:typescript": "tsc --project ./test/types/tsconfig.json",
|
||
|
"test:unit": "tap -J test/*.test.js test/**/*.test.js",
|
||
|
"test": "npm run test:lint && npm run test:unit && npm run test:typescript"
|
||
|
},
|
||
|
"precommit": "test",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/fastify/fast-json-stringify.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"json",
|
||
|
"stringify",
|
||
|
"schema",
|
||
|
"fast"
|
||
|
],
|
||
|
"author": "Matteo Collina <hello@matteocollina.com>",
|
||
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/fastify/fast-json-stringify/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/fastify/fast-json-stringify#readme",
|
||
|
"devDependencies": {
|
||
|
"ajv-pack": "^0.3.1",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"compile-json-stringify": "^0.1.2",
|
||
|
"is-my-json-valid": "^2.20.0",
|
||
|
"long": "^4.0.0",
|
||
|
"moment": "^2.24.0",
|
||
|
"pre-commit": "^1.2.2",
|
||
|
"proxyquire": "^2.1.3",
|
||
|
"semver": "^7.1.0",
|
||
|
"standard": "^16.0.1",
|
||
|
"tap": "^15.0.0",
|
||
|
"typescript": "^4.0.2",
|
||
|
"webpack": "^5.40.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"ajv": "^6.11.0",
|
||
|
"deepmerge": "^4.2.2",
|
||
|
"rfdc": "^1.2.0",
|
||
|
"string-similarity": "^4.0.1"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">= 10.0.0"
|
||
|
},
|
||
|
"standard": {
|
||
|
"ignore": [
|
||
|
"schema-validator.js"
|
||
|
]
|
||
|
},
|
||
|
"runkitExampleFilename": "example.js"
|
||
|
}
|