mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
- @standardnotes/api-gateway@1.6.12 - @standardnotes/auth-server@1.11.11 - @standardnotes/common@1.26.0 - @standardnotes/domain-events-infra@1.7.12 - @standardnotes/domain-events@2.42.1 - @standardnotes/event-store@1.1.11 - @standardnotes/files-server@1.5.10 - @standardnotes/predicates@1.2.2 - @standardnotes/scheduler-server@1.5.8 - @standardnotes/security@1.2.2 - @standardnotes/syncing-server@1.6.12
40 lines
1008 B
JSON
40 lines
1008 B
JSON
{
|
|
"name": "@standardnotes/predicates",
|
|
"version": "1.2.2",
|
|
"engines": {
|
|
"node": ">=16.0.0 <17.0.0"
|
|
},
|
|
"description": "Utils and models required for scheduling jobs",
|
|
"main": "dist/src/index.js",
|
|
"author": "Standard Notes",
|
|
"types": "dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/src/**/*.js",
|
|
"dist/src/**/*.d.ts"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"prestart": "yarn clean",
|
|
"start": "tsc -p tsconfig.json --watch",
|
|
"prebuild": "yarn clean",
|
|
"build": "tsc -p tsconfig.json",
|
|
"lint": "eslint . --ext .ts",
|
|
"test:unit": "jest spec --coverage --passWithNoTests"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^28.1.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^28.1.2",
|
|
"ts-jest": "^28.0.5"
|
|
},
|
|
"dependencies": {
|
|
"@standardnotes/common": "workspace:*",
|
|
"reflect-metadata": "^0.1.13"
|
|
}
|
|
}
|