projen-vscode-workspaces
Version:
Helpers for Projen projects that use VSCode workspaces.
142 lines • 5.22 kB
JSON
{
"name": "projen-vscode-workspaces",
"description": "Helpers for Projen projects that use VSCode workspaces.",
"repository": {
"type": "git",
"url": "https://github.com/dkershner6/projen-constructs"
},
"author": {
"name": "Derek Kershner",
"url": "https://dkershner.com",
"organization": false
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.14.4",
"@types/clone-deep": "^4.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"clone-deep": "^4.0.1",
"commit-and-tag-version": "^12",
"constructs": "10.3.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^0.25.1",
"jest": "^29.7.0",
"jest-junit": "^15",
"jest-mock": "^29.7.0",
"prettier": "^3.3.3",
"projen": "0.88.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4",
"typescript": "^5.6.2"
},
"peerDependencies": {
"constructs": "10.3.0",
"projen": "0.88.0"
},
"keywords": [
"monorepo",
"projen",
"vscode",
"workspace",
"workspaces"
],
"engines": {
"node": ">= 20.10.0 <= 20.10.0"
},
"main": "lib/index.js",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"version": "0.0.121",
"jest": {
"coverageProvider": "v8",
"testEnvironment": "node",
"testTimeout": 15000,
"testMatch": [
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"transform": {
"^.+\\.[t]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json",
"isolatedModules": true
}
]
},
"transformIgnorePatterns": [
"/node_modules/(?!.pnpm)(?!(@babel/runtime|@mui.*|@panva/hkdf|@sindresorhus/is|@szmarczak/http-timer|bail|cacheable-lookup|cacheable-request|ccount|character-entities.*|comma-separated-tokens|decode-named-character-reference|devlop|direction|dom7|escape-string-regexp|file-type|form-data-encoder|github-slugger|got|hast.*|html-void-elements|is-plain-obj|jose|longest-streak|lowercase-keys|markdown.*|mdast.*|micromark.*|mimic-response|normalize-url|p-cancelable|peek-readable|property-information|rehype.*|remark.*|responselike|separated-tokens|space-separated-tokens|ssr-window|stringify-entities|strip-markdown|strtok3|swiper|swiper/react|token-types|trim-lines|trough|unified|unist.*|util-gfm.*|uuid|vfile.*|web-namespaces|zwitch)/)",
"/node_modules/.pnpm/(?!(@babel\\+runtime|@mui.*|@panva\\+hkdf|@sindresorhus\\+is|@szmarczak\\+http-timer|bail|cacheable-lookup|cacheable-request|ccount|character-entities.*|comma-separated-tokens|decode-named-character-reference|devlop|direction|dom7|escape-string-regexp|file-type|form-data-encoder|github-slugger|got|hast.*|html-void-elements|is-plain-obj|jose|longest-streak|lowercase-keys|markdown.*|mdast.*|micromark.*|mimic-response|normalize-url|p-cancelable|peek-readable|property-information|rehype.*|remark.*|responselike|separated-tokens|space-separated-tokens|ssr-window|stringify-entities|strip-markdown|strtok3|swiper|swiper\\+react|token-types|trim-lines|trough|unified|unist.*|util-gfm.*|uuid|vfile.*|web-namespaces|zwitch)@)",
"\\.pnp\\.[^\\/]+$"
]
},
"types": "lib/index.d.ts",
"sideEffects": false,
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"ci": "npx projen ci",
"clean-compile": "npx projen clean-compile",
"compile": "npx projen compile",
"default": "npx projen default",
"docgen": "npx projen docgen",
"docgen:remove": "npx projen docgen:remove",
"eslint": "npx projen eslint",
"i": "npx projen i",
"lint": "npx projen lint",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-compile": "npx projen pre-compile",
"publish:github": "npx projen publish:github",
"publish:npm": "npx projen publish:npm",
"release": "npx projen release",
"test": "npx projen test",
"test-unit": "npx projen test-unit",
"test:watch": "npx projen test:watch",
"type-check": "npx projen type-check",
"unbump": "npx projen unbump",
"upgrade": "npx projen upgrade",
"upgrade:package": "npx projen upgrade:package",
"watch": "npx projen watch"
}
}