-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.18 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "scroll",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": "index.js",
"scripts": {
"postinstall": "scripts/compile-libicu.sh",
"test": "env BLOG_BASE_URL=\"https://example.com\" tape \"./tests/**/*.spec.js\" | tap-spec",
"lint": "npm run eslint && npm run prettier -- -l",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"prettier": "prettier \"./*.js\" \"./{.github,ansible,src,activitystreams,backstage,static,migrations,templates,tests,scripts}/**/*.{js,json,css,yml,yaml}\" --ignore-path=\".lintignore\"",
"eslint": "eslint \"./*.js\" \"./{src,activitystreams,backstage,static,migrations,templates,tests,scripts}/**/*.js\" --ignore-path=\".lintignore\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"animated-gif-detector": "^1.2.0",
"bulma": "^0.9.3",
"caseless": "^0.12.0",
"cheerio": "^1.0.0-rc.10",
"clean-css": "^5.2.2",
"cookie": "^0.4.1",
"diff": "^5.0.0",
"dotenv": "^14.2.0",
"feedparser": "^2.2.10",
"fluent-ffmpeg": "^2.1.2",
"formidable": "^3.2.1",
"highlight.js": "^11.4.0",
"http-signature": "^1.3.6",
"lodash.chunk": "^4.2.0",
"lodash.groupby": "^4.6.0",
"marked": "^4.0.10",
"mime": "^3.0.0",
"mustache": "^4.0.1",
"nanoid": "^3.1.31",
"node-fetch": "^3.1.1",
"normalize.css": "^8.0.1",
"oembed-providers": "^1.0.20210622",
"prettier": "^2.5.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"rsync": "^0.6.1",
"sanitize-html": "^2.8.1",
"sharp": "^0.30.7",
"sqlite": "^4.0.12",
"sqlite3": "^5.0.3",
"terser": "^5.5.1",
"url-pattern": "^1.0.3",
"yassium": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.7.0",
"mockery": "^2.1.0",
"serve-static": "^1.14.1",
"tap-spec": "^5.0.0",
"tape": "^5.1.1",
"tape-promise": "^4.0.0",
"text-to-svg": "^3.1.5"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"es2020": true,
"node": true
},
"overrides": [
{
"files": [
"./static/*.js",
"./templates/*.js",
"./backstage/templates/*.js"
],
"env": {
"browser": true,
"es2020": false,
"node": false
},
"parserOptions": {
"ecmaVersion": 3,
"sourceType": "script"
}
},
{
"files": [
"./backstage/templates/*.js"
],
"env": {
"browser": true,
"es2020": true,
"node": false
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "script"
}
}
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"require-atomic-updates": 0
}
}
}