-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "antsibull-docs",
"version": "1.1.0-post0",
"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": "[email protected]"
},
"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.1.0",
"@eslint/js": "^9.8.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"yaml": "^2.5.0"
}
}