-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
{
"name": "stoat",
"version": "0.0.9",
"description": "Stoat CLI",
"main": "dist/index.js",
"files": [
"dist/**/*",
"public/**/*"
],
"directories": {
"lib": "src",
"test": "__tests__"
},
"bin": {
"stoat": "./dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"format": "prettier --write '**/*.{ts,js,json}'",
"format-check": "prettier --check '**/*.{ts,js,json}'",
"lint": "eslint src/**/*.ts",
"create": "npm run build && npm run test",
"build": "ncc build src/index.ts --source-map --license licenses.txt",
"local": "yarn build && npm i -g",
"test": "jest --coverage",
"prepare": "cd .. && husky install cli/.husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoat-dev/stoat-action.git"
},
"keywords": [
"cli",
"github",
"stoat"
],
"author": "Stoat Dev",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@stoplight/yaml": "^4.3.0",
"ajv": "^8.13.0",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"compare-versions": "^6.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"deepmerge-ts": "^7.0.3",
"express": "^4.19.2",
"handlebars": "^4.7.8",
"inquirer": "^9.2.21",
"latest-version": "^9.0.0",
"marked": "^13.0.1",
"open": "^10.1.0",
"path": "^0.12.7",
"portfinder": "^1.0.32"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^20.12.12",
"@vercel/ncc": "^0.38.1",
"esbuild": "^0.22.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "3.3.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
}
}