-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.31 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": "probot-profanity",
"version": "1.1.2",
"description": "a GitHub App that marks/censors Issues and Pull Requests containing offensive content.",
"author": "Nick Garlis",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/nickgarlis/probot-profanity.git"
},
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard",
"deploy": "node ./deploy.js"
},
"dependencies": {
"bad-words-relaxed": "github:Jared-Sprague/bad-words-relaxed",
"joi": "^13.3.0",
"now": "^11.2.1",
"probot": "^6.2.1",
"probot-config": "^0.1.0",
"probot-scheduler": "^1.0.3",
"standard": "^10.0.3"
},
"engines": {
"node": "^8.9",
"npm": "^5.6"
},
"devDependencies": {
"jest": "^22.4.4",
"smee-client": "^1.0.1"
},
"standard": {
"env": [
"jest"
]
},
"bugs": {
"url": "https://github.com/nickgarlis/probot-profanity/issues"
},
"homepage": "https://github.com/nickgarlis/probot-profanity#readme",
"main": "index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"profanity",
"inappropriate",
"bot"
],
"now": {
"name": "probot-profanity",
"alias": "probot-profanity.now.sh",
"scale": {
"sfo1": {
"min": 1,
"max": 1
}
}
}
}