-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "slash-commands",
"description": "Perform commands when Issues or Pull Requests are commented with slash commands.",
"version": "1.1.0",
"main": "dist/index.js",
"files": [
"dist",
"action.yml"
],
"repository": "https://github.com/wow-actions/slash-commands",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"build": "ncc build src/index.ts --minify --v8-cache",
"prebuild": "run-s lint clean",
"prepare": "is-ci || husky install .husky"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick — staged"
],
"*.ts": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"contributors": [],
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash.random": "^3.2.0",
"mustache": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/js-yaml": "^4.0.3",
"@types/lodash.random": "^3.2.6",
"@types/mustache": "^4.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.2",
"is-ci": "^3.0.0",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
}
}