forked from rimiti/slack-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 998 Bytes
/
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
{
"name": "@rimiti/slack-ghost",
"version": "1.8.0",
"description": "Simulate Slack activity to appear as connected.",
"main": "dist/index.js",
"repository": "git@github.com:rimiti/slack-wake-up.git",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>",
"license": "MIT",
"bin": {
"slackghost": "./dist/index.js"
},
"dependencies": {
"@slack/client": "5.0.2",
"moment": "2.29.1"
},
"devDependencies": {
"@types/node": "14.14.22",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "4.1.3"
},
"scripts": {
"clean": "rimraf build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project 'tsconfig.json'",
"lint:fix": "tslint --fix -t stylish --project 'tsconfig.json'",
"prepublish": "npm run clean && npm run build"
}
}