generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "restrict-cursing-action",
"version": "0.1.0",
"private": false,
"description": "Github Action to prevent cursing and bad language in issues and pull requests",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sobolevn/restrict-cursing-action.git"
},
"keywords": [
"github",
"github-actions",
"github-action",
"github-action-node",
"cursing",
"bad-language",
"profanity-detection",
"abusive-language"
],
"author": "sobolevn",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^1.1.0",
"cuss": "^1.17.0"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"@wemake-services/eslint-config-javascript": "^0.4.1",
"@wemake-services/eslint-config-typescript": "^0.2.0",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^14.0.1",
"typescript": "^3.7.2"
}
}