-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 915 Bytes
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
{
"name": "slack-cleaner",
"version": "0.1.1",
"description": "Flag-based Slack message cleaner CLI for Node.js",
"license": "MIT",
"type": "commonjs",
"main": "src/cli.js",
"bin": {
"slack-cleaner": "bin/slack-cleaner.js"
},
"scripts": {
"start": "node bin/slack-cleaner.js --help",
"lint": "find src bin test -name '*.js' -print0 | xargs -0 -n1 node --check",
"test": "node --test"
},
"engines": {
"node": ">=18"
},
"keywords": [
"slack",
"cleanup",
"cli",
"messages"
],
"directories": {
"test": "test"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/mcdado/slack-cleaner-node.git"
},
"author": "David Gasperoni <mcdado@gmail.com>",
"bugs": {
"url": "https://github.com/mcdado/slack-cleaner-node/issues"
},
"homepage": "https://github.com/mcdado/slack-cleaner-node#readme"
}