forked from EFForg/https-everywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "issue-format-bot",
"version": "1.0.0",
"description": "GitHub bot to parse ruleset issues",
"author": "AJ Jordan <alex@strugee.net>",
"main": "index.js",
"license": "AGPL-3.0+",
"repository": {
"type": "git",
"url": "git+https://github.com/EFForg/HTTPS-Everywhere.git"
},
"scripts": {
"lint": "eslint index.js test lib",
"start": "probot run ./index.js",
"test": "npm run lint && nyc perjury test/*-test.js"
},
"bugs": {
"url": "https://github.com/EFForg/HTTPS-Everywhere/issues"
},
"homepage": "https://github.com/EFForg/HTTPS-Everywhere#readme",
"devDependencies": {
"eslint": "^4.17.0",
"expect": "^1.20.2",
"nyc": "^11.4.1",
"perjury": "^1.1.1",
"sinon": "^4.3.0",
"smee-client": "^1.0.1"
},
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4.0.0"
},
"dependencies": {
"domain-from-partial-url": "^1.0.0",
"html-entities": "^1.2.1",
"lodash": "^4.17.5",
"probot": "^5.0.0",
"remark": "^7.0.1",
"request": "^2.83.0",
"strip-markdown": "^3.0.1",
"unzip": "^0.1.11"
}
}