mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-04-03 13:10:14 +00:00
refactor: move es-mapping-generator to monorepo
This commit is contained in:
50
packages/es-mapping-generator/package.json
Normal file
50
packages/es-mapping-generator/package.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "@openstapps/es-mapping-generator",
|
||||
"version": "0.4.0",
|
||||
"description": "Tool to convert TypeScript Interfaces to Elasticsearch Mappings",
|
||||
"license": "GPL-3.0-only",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./lib/index.d.ts",
|
||||
"bin": {
|
||||
"openstapps-es-mapping-generator": "./lib/cli.js"
|
||||
},
|
||||
"author": "Wieland Schöbl <wulkanat@gmail.com>",
|
||||
"scripts": {
|
||||
"build": "npm run tslint && npm run compile",
|
||||
"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 && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
||||
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
|
||||
"postversion": "npm run changelog",
|
||||
"prepublishOnly": "npm ci && npm run build",
|
||||
"preversion": "npm run prepublishOnly",
|
||||
"push": "git push && git push origin \"v$npm_package_version\"",
|
||||
"test": "mocha --require ts-node/register test/*.spec.ts",
|
||||
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
||||
},
|
||||
"dependencies": {
|
||||
"@openstapps/logger": "1.1.1",
|
||||
"commander": "9.5.0",
|
||||
"deepmerge": "4.2.2",
|
||||
"flatted": "3.2.7",
|
||||
"got": "11.8.6",
|
||||
"typedoc": "0.18.0",
|
||||
"typescript": "3.8.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testdeck/mocha": "0.3.3",
|
||||
"@types/chai": "4.3.4",
|
||||
"@types/mocha": "9.1.1",
|
||||
"@types/node": "14.18.36",
|
||||
"@types/rimraf": "3.0.2",
|
||||
"chai": "4.3.7",
|
||||
"conventional-changelog-cli": "2.2.2",
|
||||
"mocha": "9.2.2",
|
||||
"nock": "13.3.0",
|
||||
"prepend-file-cli": "1.0.6",
|
||||
"rimraf": "3.0.2",
|
||||
"ts-node": "10.9.1",
|
||||
"tslint": "6.1.3",
|
||||
"tslint-eslint-rules": "5.4.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user