This file is indexed.

/usr/share/webext/https-everywhere/external/README.md is in webext-https-everywhere 2018.8.22-1~deb9u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# External dependencies

This directory contains files that are external dependencies for HTTPS Everywhere, with instructions on how to get or remake them.

## CodeMirror 5.31.0

```
$ npm install uglify-js@3.1.9
$ npm install uglifycss@0.0.27
$ curl -o codemirror.zip https://codemirror.net/codemirror-5.31.0.zip
$ unzip codemirror.zip
```

### codemirror-5.31.0.min.js

```bash
uglifyjs \
  --compress \
  --mangle \
  --comments '/copyright|license/' \
  --output codemirror-5.31.0.min.js \
  codemirror-5.31.0/lib/codemirror.js
```

### codemirror-5.31.0.xml.min.js

```bash
uglifyjs \
  --compress \
  --mangle \
  --comments '/copyright|license/' \
  --output codemirror-5.31.0.xml.min.js \
  codemirror-5.31.0/mode/xml/xml.js
```

### codemirror-5.31.0.min.css

```bash
uglifycss \
  --output codemirror-5.31.0.min.css \
  codemirror-5.31.0/lib/codemirror.css
```
## Pako 1.0.5

```
$ npm install pako@1.0.5
```

### pako_inflate.min.js

```
$ cp node_modules/pako/dist/pako_inflate.js pako-1.0.5/pako_inflate.min.js
```