mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
120 lines
3.8 KiB
JSON
120 lines
3.8 KiB
JSON
{
|
|
"name": "@openstapps/core",
|
|
"version": "0.67.0",
|
|
"description": "StAppsCore - Generalized model of data",
|
|
"keywords": [
|
|
"Model",
|
|
"StApps"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@gitlab.com:openstapps/core.git"
|
|
},
|
|
"license": "GPL-3.0-only",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run tslint && npm run compile && npm run pack && npm run schema && npm run mappings",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
|
|
"check-configuration": "openstapps-configuration",
|
|
"compile": "rimraf lib && tsc",
|
|
"documentation": "typedoc --name \"@openstapps/core\" --includeVersion --out docs --readme README.md --listInvalidSymbolLinks --entryPointStrategy expand src",
|
|
"pack": "openstapps-core-tools pack",
|
|
"postversion": "npm run changelog",
|
|
"prepublishOnly": "npm ci && npm run build",
|
|
"preversion": "npm run prepublishOnly",
|
|
"push": "git push && git push origin \"v$npm_package_version\"",
|
|
"schema": "node --max-old-space-size=8192 --stack-size=10240 ./node_modules/.bin/openstapps-core-tools schema src lib/schema",
|
|
"mappings": "mkdir lib/mappings && openstapps-es-mapping-generator mapping ../core/src -i minlength,pattern,see,tjs-format -m lib/mappings/mappings.json -a lib/mappings/aggregations.json",
|
|
"mappings-integration": "openstapps-es-mapping-generator put-es-templates lib/mappings/mappings.json http://elasticsearch:9200/",
|
|
"test": "nyc mocha --require ts-node/register --recursive 'test/*.spec.ts'",
|
|
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"contributors": [
|
|
"Andreas Lehmann",
|
|
"Anselm Stordeur <anselmstordeur@gmail.com>",
|
|
"Axel Nieder-Vahrenholz",
|
|
"Benjamin Jöckel",
|
|
"Frank Nagel",
|
|
"Jovan Krunić <jovan.krunic@gmail.com>",
|
|
"Michel Jonathan Schmitz",
|
|
"Rainer Killinger <mail-openstapps@killinger.co>",
|
|
"Roman Klopsch",
|
|
"Sebastian Lange",
|
|
"Wieland Schöbl"
|
|
],
|
|
"dependencies": {
|
|
"@openstapps/core-tools": "0.30.1",
|
|
"@types/geojson": "1.0.6",
|
|
"@types/json-patch": "0.0.30",
|
|
"@types/json-schema": "7.0.11",
|
|
"@types/node": "14.18.18",
|
|
"fast-deep-equal": "3.1.3",
|
|
"http-status-codes": "2.2.0",
|
|
"json-patch": "0.7.0",
|
|
"json-schema": "0.4.0",
|
|
"rfdc": "1.3.0",
|
|
"ts-optchain": "0.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.29.1",
|
|
"@openstapps/es-mapping-generator": "0.1.0",
|
|
"@openstapps/logger": "0.8.1",
|
|
"@testdeck/mocha": "0.2.0",
|
|
"@types/chai": "4.3.1",
|
|
"@types/lodash": "4.14.182",
|
|
"@types/mocha": "9.1.1",
|
|
"@types/rimraf": "3.0.2",
|
|
"chai": "4.3.6",
|
|
"conditional-type-checks": "1.0.5",
|
|
"conventional-changelog-cli": "2.2.2",
|
|
"lodash": "4.17.21",
|
|
"mocha": "10.0.0",
|
|
"nyc": "15.1.0",
|
|
"rimraf": "3.0.2",
|
|
"source-map-support": "0.5.21",
|
|
"surge": "0.23.1",
|
|
"ts-node": "10.8.0",
|
|
"tslint": "6.1.3",
|
|
"typedoc": "0.22.15",
|
|
"typescript": "4.3.5"
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"branches": 90,
|
|
"check-coverage": true,
|
|
"exclude": [],
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"functions": 95,
|
|
"include": [
|
|
"src/protocol/route.ts",
|
|
"src/things/abstract/thing.ts",
|
|
"src/things/abstract/thing-that-can-be-offered.ts",
|
|
"src/things/abstract/thing-with-categories.ts",
|
|
"src/translator.ts",
|
|
"src/guards.ts"
|
|
],
|
|
"lines": 95,
|
|
"per-file": true,
|
|
"reporter": [
|
|
"html",
|
|
"text-summary"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
],
|
|
"statements": 95
|
|
},
|
|
"openstappsConfiguration": {
|
|
"hasCli": false,
|
|
"ignoreCiEntries": [
|
|
"build"
|
|
],
|
|
"standardBuild": false,
|
|
"standardDocumentation": false
|
|
}
|
|
}
|