-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.15 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@lenne.tech/cli",
"version": "1.9.1",
"description": "lenne.Tech CLI: lt",
"keywords": [
"lenne.Tech",
"cli",
"lt"
],
"author": "Kai Haase",
"homepage": "https://lenne.tech",
"license": "MIT",
"repository": "https://github.com/lenneTech/cli.git",
"bugs": {
"url": "https://github.com/lenneTech/cli/issues"
},
"bin": {
"lt": "bin/lt"
},
"scripts": {
"check": "npm install && npm run format && npm run build && npm run start",
"postinstall": "node bin/postinstall.js 2>/dev/null || true",
"build": "npm run lint && npm run test && npm run clean-build && npm run compile && npm run copy-templates",
"clean-build": "npx rimraf ./build",
"compile": "tsc -p .",
"copy-templates": "npx shx cp -R ./src/templates ./build/templates",
"coverage": "jest --coverage",
"format": "prettier --write 'src/**/*.{js,ts,tsx,json}' '!src/templates/**/*'",
"lint": "eslint './src/**/*.{ts,js,vue}'",
"lint:fix": "eslint './src/**/*.{ts,js,vue}' --fix",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"reinit": "npx rimraf package-lock.json && npx rimraf node_modules && npm cache clean --force && npm i && npm run build",
"snapupdate": "jest --updateSnapshot",
"start": "node bin/lt",
"start:build": "npm run build && node bin/lt --compiled-build",
"start:compiled": "node bin/lt --compiled-build",
"test": "jest --testTimeout=60000",
"watch": "jest --watch",
"release": "standard-version && git push --follow-tags origin main",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin main",
"release:major": "standard-version --release-as major && git push --follow-tags origin main"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"README.md",
"docs",
"bin"
],
"dependencies": {
"@aws-sdk/client-s3": "3.986.0",
"@lenne.tech/cli-plugin-helper": "0.0.14",
"@types/lodash": "4.17.23",
"bcrypt": "6.0.0",
"find-file-up": "2.0.1",
"glob": "13.0.1",
"gluegun": "5.2.2",
"js-sha256": "0.11.1",
"js-yaml": "4.1.1",
"lodash": "4.17.23",
"open": "11.0.0",
"ts-morph": "27.0.2",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"devDependencies": {
"@lenne.tech/eslint-config-ts": "2.1.4",
"@lenne.tech/npm-package-helper": "0.0.12",
"@types/ejs": "^3.1.5",
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/node": "25.2.2",
"@typescript-eslint/eslint-plugin": "8.55.0",
"@typescript-eslint/parser": "8.55.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jest": "30.2.0",
"path-exists-cli": "2.0.0",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"rimraf": "6.1.2",
"standard-version": "9.5.0",
"ts-jest": "29.4.6"
},
"overrides": {
"apisauce@*": "3.1.1",
"cross-spawn@*": "7.0.6",
"ejs@*": "3.1.10",
"semver@*": "7.7.1",
"lodash.trim@*": "npm:lodash@4.17.21",
"lodash.trimend@*": "npm:lodash@4.17.21"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "__tests__"
}
}