-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "@slack/cli-test",
"version": "0.2.1+cli.2.26.0",
"description": "Node.js bindings for the Slack CLI for use in automated testing",
"author": "Salesforce, Inc.",
"license": "MIT",
"keywords": ["slack", "cli", "test"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18.15.5"
},
"repository": "slackapi/node-slack-sdk",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/slackapi/node-slack-sdk/issues"
},
"scripts": {
"lint": "eslint --fix --ext .ts src",
"build": "npm run build:clean && tsc",
"build:clean": "shx rm -rf ./dist ./coverage",
"prepare": "npm run build",
"mocha": "cross-env SLACK_CLI_PATH=/doesnt/matter mocha --config .mocharc.json src/*.spec.ts src/**/*.spec.ts",
"test": "npm run lint && npm run build && c8 npm run mocha"
},
"dependencies": {
"tree-kill": "^1.2.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^18.15.5",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"c8": "^9.1.0",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-airbnb-base": "^15",
"eslint-config-airbnb-typescript": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-import-newlines": "^1",
"eslint-plugin-jsdoc": "^48",
"eslint-plugin-node": "^11",
"mocha": "^10.4.0",
"shx": "^0.3.4",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "5.0.4"
}
}