jsonlogic-formula
Version:
JsonLogic parser to and from spreadsheet formula syntax
42 lines (41 loc) • 1.28 kB
JSON
{
"name": "jsonlogic-formula",
"version": "0.1.1",
"description": "JsonLogic parser to and from spreadsheet formula syntax",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"scripts": {
"build": "node -r tsm ./scripts/build.ts && npm run declarations",
"lint": "biome ci src scripts",
"test": "uvu -r tsm",
"coverage": "c8 --check-coverage npm test",
"declarations": "tsc --declarationDir dist --emitDeclarationOnly --declaration",
"postbuild": "cat package.json | sed '/\\\"devDependencies\\\"/,/}/ d; /^$/d' | sed 's/\\.\\/dist\\//\\.\\//g' > ./package.json && cp README.md dist && cp LICENSE dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcisbee/jsonlogic-formula.git"
},
"keywords": [
"jsonlogic",
"json-logic",
"spreadsheet",
"formula",
"parser"
],
"author": "Marcis <marcisbergmanis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcisbee/jsonlogic-formula/issues"
},
"homepage": "https://github.com/Marcisbee/jsonlogic-formula#readme",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
}
}
}