antsibull-docs
Version:
TypeScript library for processing Ansible documentation markup
69 lines (68 loc) • 1.91 kB
JSON
{
"name": "antsibull-docs",
"version": "1.1.3",
"description": "TypeScript library for processing Ansible documentation markup",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
".eslintrc.json",
".prettierignore",
".prettierrc.yml",
"dist",
"jest.config.ts",
"src",
"test-vectors.yaml",
"tsconfig.json",
"CHANGELOG.md",
"CHANGELOG.rst",
"LICENSE",
"LICENSES/*",
"README.md"
],
"scripts": {
"build": "npx tsc -p tsconfig-cjs.json && npx tsc -p tsconfig-esm.json",
"build:cjs": "npx tsc -p tsconfig-cjs.json",
"build:cjs:watch": "npx tsc -p tsconfig-cjs.json -w",
"build:esm": "npx tsc -p tsconfig-esm.json",
"build:esm:watch": "npx tsc -p tsconfig-esm.json -w",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"lint": "npx eslint \"src/**/*.ts\"",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"test:coverage:watch": "npx jest --coverage --watchAll",
"test:watch": "npx jest --watchAll"
},
"keywords": [
"ansible",
"antsibull-docs"
],
"author": {
"name": "Felix Fontein",
"email": "felix@fontein.de"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/ansible-community/antsibull-docs-ts.git"
},
"bugs": {
"url": "https://github.com/ansible-community/antsibull-docs-ts/issues"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.28.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"yaml": "^2.8.0"
}
}