forked from toolbox-team/reddit-moderator-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 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
{
"name": "moderator-toolbox-for-reddit",
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
"type": "module",
"private": true,
"scripts": {
"build": "del-cli build && rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js --watch",
"build:release": "npm ci && del-cli build && node release.mjs && cross-env NODE_ENV=production rollup -c rollup.config.js",
"eslint": "eslint . --config .eslintrc.json --ignore-path .eslintignore",
"docs": "jsdoc -c jsdoc.json"
},
"homepage": "http://www.reddit.com/r/toolbox",
"repository": {
"type": "git",
"url": "https://github.com/toolbox-team/reddit-moderator-toolbox.git"
},
"license": "Apache-2.0",
"dependencies": {
"codemirror": "^5.65.13",
"dompurify": "^3.0.5",
"jquery": "^3.6.4",
"pako": "^0.2.6",
"snuownd": "github:gamefreak/snuownd#533e8dcb67fe8e4ddc83fb8317ed0d10c25b6fcb",
"timeago": "^1.6.7",
"tinycolor2": "^1.6.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"docdash": "^2.0.1",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.27.5",
"inquirer": "^9.2.8",
"jsdoc": "^4.0.2",
"rollup": "^3.2.3",
"rollup-plugin-copy": "^3.4.0"
}
}