forked from strumwolf/delete-deployment-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "delete-deployment-environment",
"version": "2.0.1",
"main": "src/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.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@octokit/core": "^3.3.0",
"@octokit/types": "^6.10.1",
"@typescript-eslint/parser": "^4.16.1",
"@zeit/ncc": "^0.22.3",
"ava": "^3.15.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-github": "^4.1.2",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"yaml-lint": "^1.2.4"
},
"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"
]
}
}