generated from permafrost-dev/typescript-project-skeleton-esbuild-jest
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.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
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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "codeboost",
"version": "1.0.2",
"description": "Automate changes to repositories",
"author": "Patrick Organ <[email protected]>",
"license": "MIT",
"keywords": [
"nodejs",
"automation",
"git",
"repositories"
],
"homepage": "https://github.com/permafrost-dev/codeboost",
"repository": {
"type": "git",
"url": "git+https://github.com/permafrost-dev/codeboost.git"
},
"bugs": {
"url": "https://github.com/permafrost-dev/codeboost/issues"
},
"main": "dist/codeboost.cs.js",
"typings": "dist/codeboost.d.ts",
"exports": {
".": {
"import": "./dist/codeboost.es.mjs",
"require": "./dist/codeboost.cs.js"
}
},
"lint-staged": {
"*.{js,ts}": [
"rome format --skip-errors --write",
"prettier --config prettier.config.js --write",
"eslint --fix"
],
"*.{css,gql,graphql,html,json,less,md,mdx,sass,scss}": [
"prettier --config prettier.config.js --write"
],
"*.{yaml,yml}": [
"prettier --config prettier.config.js --tab-width 2 --write"
]
},
"scripts": {
"analyze:deps:circular": "madge --extensions js,ts --circular --ts-config tsconfig.json src/**",
"analyze:deps:list": "madge --extensions js,ts --ts-config tsconfig.json src/**",
"analyze:deps:graph": "madge --extensions js,ts --image dependency-graph.svg --layout dot --ts-config tsconfig.json src/**",
"test": "jest tests --verbose",
"test:coverage": "jest tests --coverage",
"fmt": "rome format --skip-errors --write . && prettier --config prettier.config.js --write .",
"lint": "eslint --ext ts,js src/",
"lint:fix": "eslint --ext ts,js --fix src/",
"lint:staged": "lint-staged",
"fix": "npm run fmt && npm run lint:fix",
"build:api-docs": "node scripts/build-docs.js",
"build:cli": "node scripts/build.js",
"build:lib": "node scripts/build-library.js",
"build:dts": "dts-bundle-generator -o dist/codeboost.d.ts src/lib/CodeBoost.ts",
"build": "npm run build:cli && npm run build:lib && npm run build:dts",
"dev": "npm run build:cli && node dist/cli.js",
"preversion": "npm run test",
"postversion": "npm run build",
"prepare": "husky install"
},
"dependencies": {
"@octokit/core": "^4.1.0",
"@octokit/plugin-throttling": "^4.3.2",
"better-queue": "^3.8.12",
"chalk": "^4.0",
"commander": "^10.0.0",
"dayjs": "^1.11.7",
"deepmerge": "^4.2.2",
"dotenv": "^16.0.3",
"edge.js": "^5.5.0",
"eventemitter2": "^6.4.9",
"js-yaml": "^4.1.0",
"nanoid": "^4.0.0",
"semver": "^7.3.8",
"simple-git": "^3.15.1",
"simple-update-notifier": "^1.1.0",
"ts-mixer": "^6.0.2",
"winston": "^3.8.2",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@types/better-queue": "^3.8.3",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.16",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"dts-bundle-generator": "^7.1.0",
"esbuild": "^0.17.6",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"madge": "^6.0.0",
"nock": "^13.2.9",
"prettier": "^2.8.1",
"rome": "^11.0.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.22",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^5.0.4"
},
"bin": "bin/codeboost.js",
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}