mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "@openstapps/es-mapping-generator",
|
|
"description": "Tool to convert TypeScript Interfaces to Elasticsearch Mappings",
|
|
"version": "2.1.0",
|
|
"type": "commonjs",
|
|
"license": "GPL-3.0-only",
|
|
"author": "Thea Schöbl <dev@theaninova.de>",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"bin": {
|
|
"openstapps-es-mapping-generator": "app.js"
|
|
},
|
|
"author": "Thea Schöbl <dev@theaninova.de>",
|
|
"scripts": {
|
|
"build": "rimraf lib && tsc",
|
|
"format": "prettier . --ignore-path ../../.gitignore",
|
|
"format:fix": "prettier --write . --ignore-path ../../.gitignore",
|
|
"lint": "eslint -c .eslintrc --ignore-path .eslintignore --ext .ts src/ test/",
|
|
"lint:fix": "eslint --fix -c .eslintrc --ignore-path .eslintignore --ext .ts src/ test/",
|
|
"test": "c8 mocha"
|
|
},
|
|
"dependencies": {
|
|
"@elastic/elasticsearch": "8.4.0",
|
|
"commander": "10.0.0",
|
|
"deepmerge": "4.3.1",
|
|
"flatted": "3.2.7",
|
|
"got": "11.8.6",
|
|
"typedoc": "0.18.0",
|
|
"typescript": "3.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/prettier-config": "workspace:*",
|
|
"@testdeck/mocha": "0.3.3",
|
|
"@openstapps/eslint-config": "workspace:*",
|
|
"@types/chai": "4.3.4",
|
|
"@types/mocha": "10.0.1",
|
|
"@types/node": "14.18.38",
|
|
"@types/rimraf": "3.0.2",
|
|
"chai": "4.3.7",
|
|
"mocha": "10.2.0",
|
|
"c8": "7.13.0",
|
|
"nock": "13.3.0",
|
|
"rimraf": "5.0.0",
|
|
"ts-node": "10.9.1",
|
|
},
|
|
"prettier": "@openstapps/prettier-config"
|
|
}
|