mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 08:46:16 +00:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "@openstapps/easy-ast",
|
|
"description": "Tool to easily handle TypeScript AST",
|
|
"version": "2.1.0",
|
|
"type": "module",
|
|
"license": "GPL-3.0-only",
|
|
"repository": "git@gitlab.com:openstapps/core-tools.git",
|
|
"author": "Thea Schöbl <dev@theaninova.de>",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --dts",
|
|
"format": "prettier .",
|
|
"format:fix": "prettier --write .",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --fix --ext .ts src/",
|
|
"test": "nyc mocha 'test/**/*.spec.ts'"
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/collection-utils": "workspace:*",
|
|
"@openstapps/logger": "workspace:*",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/eslint-config": "workspace:*",
|
|
"@openstapps/nyc-config": "workspace:*",
|
|
"@openstapps/prettier-config": "workspace:*",
|
|
"@openstapps/tsconfig": "workspace:*",
|
|
"@testdeck/mocha": "0.3.3",
|
|
"@types/chai": "4.3.4",
|
|
"@types/fs-extra": "9.0.13",
|
|
"@types/mocha": "10.0.1",
|
|
"@types/node": "18.15.3",
|
|
"mocha": "10.2.0",
|
|
"nock": "13.3.0",
|
|
"tsup": "6.7.0"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/app.ts",
|
|
"src/index.ts"
|
|
],
|
|
"sourcemap": true,
|
|
"clean": true,
|
|
"format": "esm",
|
|
"outDir": "lib"
|
|
},
|
|
"prettier": "@openstapps/prettier-config",
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@openstapps"
|
|
]
|
|
},
|
|
"eslintIgnore": [
|
|
"resources",
|
|
"openapi"
|
|
],
|
|
"nyc": {
|
|
"extends": "@openstapps/nyc-config"
|
|
}
|
|
}
|