-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 KB
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
{
"name": "@acrontum/boats-cli",
"version": "2.4.1",
"description": "A CLI that generates boats projects, paths, schemas and queries",
"main": "dist/src/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/acrontum/boats-cli.git"
},
"bin": {
"boats-cli": "dist/src/cli.js",
"bc": "dist/src/cli.js"
},
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "tsc",
"lint": "eslint '{src,test}/**/*.ts'",
"version": "npm verison --no-commit-hooks --no-git-tag-version",
"setup": "git config core.hooksPath ./githooks",
"docs": "npm run docs-readme && npm run docs-changelog",
"docs-readme": "npx doctoc --github readme.md && sed -i 's/%5C_/_/g' readme.md",
"docs-changelog": "npx auto-changelog --output changelog.md --commit-limit false --sort-commits date --hide-empty-releases --ignore-commit-pattern 'release' --breaking-pattern 'breaking change: '",
"test": "node -r source-map-support/register --test dist/test/*.spec.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@acrontum/eslint-config": "^1.2.1",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.1",
"@types/nunjucks": "^3.2.6",
"auto-changelog": "^2.5.0",
"boats": "^5.1.3",
"prettier": "^3.5.1",
"source-map-support": "^0.5.21",
"typescript": "^5.4.5"
},
"overrides": {
"whatwg-url": ">= 13",
"jsonpath-plus": ">= 10.3.0"
},
"files": [
"readme.md",
"dist/src/**/*.js",
"dist/src/**/*.ts"
]
}