generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 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
{
"name": "workflow-toggle",
"version": "1.0.0",
"description": "GitHub Action to Enable/Disable GitHub Actions Workflows",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/StephenMP/workflow-toggle.git"
},
"keywords": [
"actions",
"node",
"workflows"
],
"author": "StephenMP",
"license": "MIT",
"scripts": {
"all": "yarn build && yarn lint && yarn pkg && yarn test",
"bootstrap": "lerna bootstrap",
"build": "rimraf ./dist/*; tsc",
"lint": "eslint",
"pkg": "ncc build --minify --source-map --license licenses.txt",
"prepare": "husky install",
"start": "node ./dist/index.js",
"test": "jest --passWithNoTests",
"ts-node": "ts-node"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@golevelup/ts-jest": "^0.3.5",
"@octokit/types": "^9.1.2",
"@types/jest": "^29.5.1",
"@types/nock": "^11.1.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^6.6.1",
"lint-staged": "^13.2.1",
"nock": "^13.3.1",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/core": "^4.2.0",
"@vercel/ncc": "^0.36.1",
"fail-whale": "^1.0.7",
"node": "^16.20.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,md,yaml,yml}": [
"prettier --write",
"git add"
]
}
}