forked from strumwolf/delete-deployment-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "delete-deployment-environment",
"version": "3.0.0",
"main": "lib/main.js",
"repository": "https://github.com/strumwolf/delete-deployment-environment.git",
"author": "Brian Kurtz <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "ava --verbose",
"lint": "eslint src/*.ts",
"pack": "ncc build"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@octokit/core": "^4.2.4",
"@octokit/request-error": "^3.0.3",
"@octokit/types": "^7.5.1",
"@types/node": "^20.11.10",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.34.0",
"ava": "^4.3.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-escompat": "^3.4.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^4.3.8",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"yaml-lint": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --config .prettierrc --write"
],
"*.*": [
"prettier --config .prettierrc --write"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}