This repository has been archived by the owner on Oct 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.6 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
{
"name": "@videndum/release-mastermind",
"version": "0.0.0-alpha.10",
"description": "",
"repository": "[email protected]:videndum/release-mastermind.git",
"author": "Jonathan Stevens <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": ">=15"
},
"main": "lib/index.js",
"typings": "./lib/index.d.ts",
"directories": {
"lib": "./lib",
"doc": "./docs",
"test": "./__tests__",
"typing": "./lib"
},
"keywords": [
"actions",
"node",
"setup"
],
"scripts": {
"build": "tsc",
"dev:all": "npm run dev:package && npm run dev:format",
"dev:format": "prettier --config .prettier.json --write .",
"dev:format-check": "prettier --config .prettier.json --check .",
"dev:package": "npm run dev:tsc && ncc build --source-map --target es2021 --minify",
"dev:run": "npm run dev:tsc && node lib/index.js",
"dev:schema": "typescript-json-schema ./tsconfig.json Runners -o schema.json --propOrder --defaultProps --titles --topRef --refs --required",
"dev:test": "jest --json --outputFile=result.json --testLocationInResults",
"dev:tsc": "tsc -p tsconfig.json",
"git": "git add . && git commit -m \"chore: Bump Version & Changelog from @videndum/action-masterminds\" -s && git push",
"postdev:schema": "typescript-json-schema ./tsconfig.json Labels -o schema/labels.json --propOrder --defaultProps --titles --topRef --refs --required",
"predev:schema": "typescript-json-schema ./tsconfig.json Config -o schema/configs.json --propOrder --defaultProps --titles --topRef --refs --required",
"run": "node lib/index.js",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0",
"@videndum/utilities": "^1.0.0-alpha.17"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^16.4.2",
"@types/nodegit": "^0.27.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vercel/ncc": "^0.29.0",
"docusaurus-plugin-typedoc": "^0.15.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26.6.1",
"jest-circus": "^27.0.6",
"js-yaml": "^4.1.0",
"prettier-plugin-organize-imports": "^2.3.3",
"prettier-plugin-pkg": "^0.10.0",
"prettier-plugin-sh": "^0.7.1",
"prettier-standard": "^16.4.1",
"ts-jest": "^26.4.3",
"ts-json-schema-generator": "^0.95.0",
"typedoc": "^0.21.5",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.3.5",
"typescript-json-schema": "^0.50.1"
}
}